Browse By Tags

  • Does anyone have any advice for learning how to program Cortex-M processors without an IDE?

    I'm interested in learning about what's under the hood, or what's hidden from you by an IDE, by which I mean, compiler, linker, makefiles - that type of thing. I have a few specific, if potentially misguided questions about what I think I should be doing…

  • What the linker file does?

    Hello everyone.

    I am new in programming and I am wondering what the linker file is used for and what It does? The programing environment I use is IAR embedded workbench. The only thing I know is that the linker file is used as a reference between the binary…

  • Linker throws L6200E while linking a SYMDEFS generated file and other *.o files

    I am trying to do the following with Armlink 5.03

    1) Compile and link certain part of code and create a "symdefs file" with option --symdefs FileA

    2) Then I compile and link rest of the code (I will call it FileB) along with FileA (as I understand…

  • An error message by armlink

    Hello, guys, I am now building my application for a Cortex-M0plus core, and when I tried to link the object files with the standard C library using the following command,

    $ armlink --cpu=Cortex-M0plus --fpu=none --diag_suppress=6318,6314,9931 --info totals…

  • Need help in resolving the Linker Error : L6128E

    Hi All,

    I am new to ARM compiler/linker tools. I am using RVDS221 for compilation.

    I got this Errors related to linking the libraries. I checked in the errors and warnings guide, but dint understood

     

    Please help me to resolve this.

    V:\ASIC\users\c_thimma…

  • File not found when executing assembled program

    The main problem

    When assembling your first programs with AS, and linking it to external libraries like this :

    armv7a-hardfloat-linux-gnueabi-as -o test.o test.S

    armv7a-hardfloat-linux-gnueabi-ld.gold --hash-style=sysv -o test test.o -lc

    You might be confronted…