Update linker.ld

This commit is contained in:
TuxSH 2017-04-15 21:17:50 +02:00
parent 93c8c90804
commit 2900f2d67b

View File

@ -10,9 +10,7 @@ SECTIONS
.rodata : ALIGN(4) { *(.rodata*); . = ALIGN(4); } .rodata : ALIGN(4) { *(.rodata*); . = ALIGN(4); }
.data : ALIGN(4) { *(.data*); . = ALIGN(4); } .data : ALIGN(4) { *(.data*); . = ALIGN(4); }
__bss_start = .; .bss : ALIGN(8) { __bss_start = .; *(.bss* COMMON); . = ALIGN(8); __bss_end = .; }
.bss : ALIGN(8) { *(.bss* COMMON); . = ALIGN(8); }
__bss_end = .;
. = ALIGN(4); . = ALIGN(4);
} }