This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Obj mapping with two files with identical names

Hi,

I write a firmware for an AM335x processor using TI ARM CGT V5.0.5.
In my linker command file I have something like:

  // Spezielle Sektion für init.obj (Einsprung aus Second Level Bootloader)
  .init     : {
                init.obj (.text)
              } LOAD > 0x80000000

Unfortunately I use lwIP TCP/IP stack that has a file called "init.c". Result: I have one file "init.asm" (my own file) and one file "init.c" (lwIP stack) that results in two files with identical names "init.obj". Is there a definition which obj file the linker uses for the mapping showed above?

Thanks
Patrick