Tentative constructors fix.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9897 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2016-11-01 19:44:11 +00:00
parent ef75851d10
commit 13537cb724
1 changed files with 3 additions and 3 deletions

View File

@ -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.*)