ld: Add (NOLOAD) to .bss section.

This commit is contained in:
James Benton 2018-05-30 22:40:20 +01:00
parent 1c3d26ab1b
commit 00b6fa3940

View File

@ -88,7 +88,7 @@ SECTIONS
} > datamem } > datamem
__bss_start = .; __bss_start = .;
.bss ALIGN(64) : { .bss ALIGN(64) (NOLOAD) : {
*(.dynbss) *(.dynbss)
*(.bss) *(.bss)
*(.bss.*) *(.bss.*)
@ -111,7 +111,6 @@ SECTIONS
*(.gnu.linkonce.sb2.*) *(.gnu.linkonce.sb2.*)
__sbss2_end = .; __sbss2_end = .;
. = ALIGN(32); . = ALIGN(32);
} }
__bss_end = .; __bss_end = .;