mirror of https://github.com/ARMmbed/mbed-os.git
Fixed section names in linker script for TEENSY3_1 when using GCC_ARM
parent
faba4123ec
commit
8348517bbb
|
@ -42,10 +42,11 @@ SECTIONS
|
||||||
{
|
{
|
||||||
.isr_vector :
|
.isr_vector :
|
||||||
{
|
{
|
||||||
__vector_table = .;
|
. = 0;
|
||||||
KEEP(*(.vector_table))
|
__isr_vector = .;
|
||||||
|
KEEP(*(.isr_vector))
|
||||||
*(.text.Reset_Handler)
|
*(.text.Reset_Handler)
|
||||||
*(.text.System_Init)
|
*(.text.SystemInit)
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
} > VECTORS
|
} > VECTORS
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue