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.
Hi, I use GROUP as described in the manual: GROUP: { /* initialized data */ .data .bss } load = rom, run = system_mod Though both .data and .bss are initialized, I get following warning: ../evmam1808.cmd", line 89: warning: LOAD placement ignored for "GROUP_3": object is uninitialized How am I supposed to write this ?
Please show me the lines in your link command file which set up that GROUP, as well as the lines in the map file which show how the linker allocated it. You are building for an ARM device, right? Are you building for EABI?
Thanks and regards,
-George
It was all in the first post, but the forum-software is crap and wants me to insert newline in HTML code :(Georgem said:Please show me the lines in your link command file which set up that GROUP, as well as the lines in the map file which show how the linker allocated it. You are building for an ARM device, right? Are you building for EABI?
Thanks and regards,
-George
42Bastian said:It was all in the first post, but the forum-software is crap and wants me to insert newline in HTML code
Sorry about that. Next time, just put it in a text file and attach it to the post. The file attachment buttons can be seen by clicking on the "Options" link near the upper left corner of the post composition window.
Well, .data is an initialized section, and .bss is an uninitialized section. When you put them together in the same GROUP, things can get weird. Just to see if it makes things better, please move the .bss section outside the GROUP. Let me know what happens.
Thanks and regards,
-George
I now suspect a bug in the linker. Unfortunately, this means we need a test case we can build and see the error for ourselves. That's often challenging for linker issues. I'd appreciate if you would put a test case together. Please include the exact tools version and build options.
Thanks and regards,
-George
Thank you for the test case. I submitted SDSCM00038199 in our SDOWP system. Feel free to track it at the SDOWP link in my sig below.
A workaround is to rewrite the GROUP like this ...
GROUP : { .data load = FLASH GROUP { .bss .sysmem .stack } } run = SRAM
I think that does what you want.
Thanks and regards,
-George
.data load = FLASH,table(BINIT, compression = rle)
.binit > FLASH
GROUP : { .text .const .cinit .pinit .binit} > FLASH
GROUP : { .data load = FLASH GROUP: { .bss .sysmem .stack } } run = SRAM, RUN_SIZE(rs),RUN_START(rstart),table(mytab),table(BINIT,compression = rle)
binit @ 000004d0 records: 4, size/record: 12, table size: 52 .data: load addr=00000508, load size=00000018, run addr=20000000, run size=00000018, compression=off .bss: load addr=20000018, load size=00000190, run addr=20000018, run size=00000190, compression=none .sysmem: load addr=200001a8, load size=00000000, run addr=200001a8, run size=00000000, compression=none .stack: load addr=200001a8, load size=00000100, run addr=200001a8, run size=00000100, compression=none mytab @ 00000448 records: 4, size/record: 12, table size: 52 .data: load addr=00000430, load size=00000018, run addr=20000000, run size=00000018, compression=none .bss: load addr=20000018, load size=00000190, run addr=20000018, run size=00000190, compression=none .sysmem: load addr=200001a8, load size=00000000, run addr=200001a8, run size=00000000, compression=none .stack: load addr=200001a8, load size=00000100, run addr=200001a8, run size=00000100, compression=none
.data load = FLASH ,table(BINIT, compression = rle),table(mytab, compression = rle)
I tried George's WA and was able to produce an executable with initialized data for the .data section using the 4.6.4 linker. Can you attach your .out file? I'm not sure why your .data section is empty. We need to examine the output file to see exactly what's going on with any case where you get unexpected output.
Regarding your original post, the reason why the warning is emitted from the linker is because you should not have a GROUP that specifies both the load and run placement when that GROUP has an uninitialized section member.
-Mack
The exact linker warning you got in your original post is a valid warning. Because you are using EABI and are auto initializing variables at runtime (linker option -c enabled by default), the linker emits this warning since there are no sections in the GROUP that have load data. You can avoid this warning (if you actually want .data to have a different load and run address) for the 4.6.4 release by specifying that the .data section should not be autoinitialized:
GROUP: {.data: type=NOINIT .bss } load = rom, run = system_mod
-Mack