From c1ae7c76df41103a71e91fc2f5cdfed22e7320ee Mon Sep 17 00:00:00 2001 From: David Sidrane Date: Tue, 28 Nov 2017 02:24:20 -1000 Subject: [PATCH] px4esc-v1:Ensure _ebss will be 4 byte aligned --- nuttx-configs/px4esc-v1/scripts/ld.script | 1 + 1 file changed, 1 insertion(+) diff --git a/nuttx-configs/px4esc-v1/scripts/ld.script b/nuttx-configs/px4esc-v1/scripts/ld.script index 2df6e904a2..9382c28d9c 100644 --- a/nuttx-configs/px4esc-v1/scripts/ld.script +++ b/nuttx-configs/px4esc-v1/scripts/ld.script @@ -135,6 +135,7 @@ SECTIONS *(.bss .bss.*) *(.gnu.linkonce.b.*) *(COMMON) + . = ALIGN(4); _ebss = ABSOLUTE(.); } > sram