Browse Source

px4-stm32f4discovery:Ensure _ebss will be 4 byte aligned

sbg
David Sidrane 7 years ago committed by Lorenz Meier
parent
commit
c76f90f078
  1. 1
      nuttx-configs/px4-stm32f4discovery/scripts/ld.script

1
nuttx-configs/px4-stm32f4discovery/scripts/ld.script

@ -130,6 +130,7 @@ SECTIONS @@ -130,6 +130,7 @@ SECTIONS
*(.bss .bss.*)
*(.gnu.linkonce.b.*)
*(COMMON)
. = ALIGN(4);
_ebss = ABSOLUTE(.);
} > sram

Loading…
Cancel
Save