On 3/12/24 04:08, Ilias Apalodimas wrote:
- .bss_start (NOLOAD) : {
- . = ALIGN(8);
This alignment got lost.
- KEEP(*(.__bss_start));
- } >.sdram
-
- .bss (NOLOAD) : {
+ .bss : {
If it is required, the best replacement would be here on the output section definition.
- . = ALIGN(8);
-
- .bss_start : {
- KEEP(*(.__bss_start));
- }
-
- .bss : {
+ .bss ALIGN(8): {
Like you did here. r~

