diff options
Diffstat (limited to 'os/common/startup')
-rw-r--r-- | os/common/startup/ARMCMx/compilers/GCC/ld/rules_code.ld | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/os/common/startup/ARMCMx/compilers/GCC/ld/rules_code.ld b/os/common/startup/ARMCMx/compilers/GCC/ld/rules_code.ld index f61fe2d5a..937e62621 100644 --- a/os/common/startup/ARMCMx/compilers/GCC/ld/rules_code.ld +++ b/os/common/startup/ARMCMx/compilers/GCC/ld/rules_code.ld @@ -18,12 +18,12 @@ ENTRY(Reset_Handler) SECTIONS
{
- vectors : ALIGN(16) SUBALIGN(16)
+ .vectors : ALIGN(16)
{
KEEP(*(.vectors))
} > VECTORS_FLASH AT > VECTORS_FLASH_LMA
- xtors : ALIGN(4) SUBALIGN(4)
+ .xtors : ALIGN(4)
{
__init_array_start = .;
KEEP(*(SORT(.init_array.*)))
@@ -35,7 +35,7 @@ SECTIONS __fini_array_end = .;
} > XTORS_FLASH AT > XTORS_FLASH_LMA
- .text : ALIGN(16) SUBALIGN(16)
+ .text ALIGN(16) : ALIGN(16)
{
*(.text)
*(.text.*)
|