Fixed an error introduced with latest changes.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8282 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2015-09-06 13:20:34 +00:00
parent fa1c7f8bd2
commit 006c771612
1 changed files with 9 additions and 9 deletions

View File

@ -52,7 +52,7 @@ SECTIONS
startup : ALIGN(16) SUBALIGN(16)
{
KEEP(*(.vectors))
} > flash_itcm AT > flash
} > flash
constructors : ALIGN(4) SUBALIGN(4)
{
@ -60,7 +60,7 @@ SECTIONS
KEEP(*(SORT(.init_array.*)))
KEEP(*(.init_array))
PROVIDE(__init_array_end = .);
} > flash_itcm AT > flash
} > flash
destructors : ALIGN(4) SUBALIGN(4)
{
@ -68,7 +68,7 @@ SECTIONS
KEEP(*(.fini_array))
KEEP(*(SORT(.fini_array.*)))
PROVIDE(__fini_array_end = .);
} > flash_itcm AT > flash
} > flash
.text : ALIGN(16) SUBALIGN(16)
{
@ -79,33 +79,33 @@ SECTIONS
*(.glue_7t)
*(.glue_7)
*(.gcc*)
} > flash_itcm AT > flash
} > flash
.ARM.extab :
{
*(.ARM.extab* .gnu.linkonce.armextab.*)
} > flash_itcm AT > flash
} > flash
.ARM.exidx : {
PROVIDE(__exidx_start = .);
*(.ARM.exidx* .gnu.linkonce.armexidx.*)
PROVIDE(__exidx_end = .);
} > flash_itcm AT > flash
} > flash
.eh_frame_hdr :
{
*(.eh_frame_hdr)
} > flash_itcm AT > flash
} > flash
.eh_frame : ONLY_IF_RO
{
*(.eh_frame)
} > flash_itcm AT > flash
} > flash
.textalign : ONLY_IF_RO
{
. = ALIGN(8);
} > flash_itcm AT > flash
} > flash
. = ALIGN(4);
_etext = .;