Fixed section names in linker script for TEENSY3_1 when using GCC_ARM

pull/1052/head
Christoph Plank 2015-03-22 00:15:27 +01:00
parent faba4123ec
commit 8348517bbb
1 changed files with 4 additions and 3 deletions

View File

@ -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