Fixed bug: removed subalign

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12116 110e8d01-0319-4d1e-a829-52ad28d1bb01
This commit is contained in:
edolomb 2018-06-19 16:44:21 +00:00
parent 243112664b
commit a116815081
1 changed files with 4 additions and 4 deletions

View File

@ -48,13 +48,13 @@ SECTIONS
. = 0;
_text = .;
startup : ALIGN(16) SUBALIGN(16)
startup : ALIGN(16)
{
KEEP(*(.vectors))
KEEP(*(.boot))
} > flash
constructors : ALIGN(4) SUBALIGN(4)
constructors : ALIGN(4)
{
PROVIDE(__init_array_start = .);
KEEP(*(SORT(.init_array.*)))
@ -62,7 +62,7 @@ SECTIONS
PROVIDE(__init_array_end = .);
} > flash
destructors : ALIGN(4) SUBALIGN(4)
destructors : ALIGN(4)
{
PROVIDE(__fini_array_start = .);
KEEP(*(.fini_array))
@ -70,7 +70,7 @@ SECTIONS
PROVIDE(__fini_array_end = .);
} > flash
.text : ALIGN(16) SUBALIGN(16)
.text : ALIGN(16)
{
*(.text)
*(.text.*)