From 2900f2d67b2de1d24b2ff32e0c45d8f6c9bfa1f8 Mon Sep 17 00:00:00 2001 From: TuxSH Date: Sat, 15 Apr 2017 21:17:50 +0200 Subject: [PATCH] Update linker.ld --- linker.ld | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/linker.ld b/linker.ld index 5486ff0..8e5a234 100644 --- a/linker.ld +++ b/linker.ld @@ -10,9 +10,7 @@ SECTIONS .rodata : ALIGN(4) { *(.rodata*); . = ALIGN(4); } .data : ALIGN(4) { *(.data*); . = ALIGN(4); } - __bss_start = .; - .bss : ALIGN(8) { *(.bss* COMMON); . = ALIGN(8); } - __bss_end = .; + .bss : ALIGN(8) { __bss_start = .; *(.bss* COMMON); . = ALIGN(8); __bss_end = .; } . = ALIGN(4); }