From fea11f1d47eef8df32ac68083e96514822cbc250 Mon Sep 17 00:00:00 2001 From: David Sidrane Date: Tue, 28 Nov 2017 02:24:19 -1000 Subject: [PATCH] nxphlite-v3:Ensure _ebss will be 4 byte aligned --- nuttx-configs/nxphlite-v3/scripts/ld.script | 1 + 1 file changed, 1 insertion(+) diff --git a/nuttx-configs/nxphlite-v3/scripts/ld.script b/nuttx-configs/nxphlite-v3/scripts/ld.script index 9ff741d0a6..3dd22a145b 100644 --- a/nuttx-configs/nxphlite-v3/scripts/ld.script +++ b/nuttx-configs/nxphlite-v3/scripts/ld.script @@ -141,6 +141,7 @@ SECTIONS *(.bss .bss.*) *(.gnu.linkonce.b.*) *(COMMON) + . = ALIGN(4); _ebss = ABSOLUTE(.); } > datasram