search for: 01f000

Displaying 1 result from an estimated 1 matches for "01f000".

Did you mean: 010000
2020 Sep 01
2
[lld] [arm] Linker Cannot Set Custom Section Type to NOBITS
...Addr Off Size ES Flg Lk Inf Al ... [ 5] .stack PROGBITS 1ffff000 0014f0 000400 00 A 0 0 1 *arm-none-eabi-ld* Section Headers: [Nr] Name Type Addr Off Size ES Flg Lk Inf Al ... [ 5] .stack NOBITS 1ffff000 01f000 000400 00 WA 0 0 1 Reading online, I found that I should add the (NOLOAD) directive to my linker script, so I tried the following. .stack (NOLOAD) : { . += __stack_size__; } > ram But this change to the linker script does not seem to affect the output ELF file. Interestingly, if I add the...