mirror of
https://github.com/FreeRTOS/FreeRTOS.git
synced 2025-06-20 07:13:55 +08:00
Fix issue in CORTEX_LM3S811_GCC Demo linkerscipt (#102)
The .text section is listed as *(.text) and results in build error because there are some .text* sections that are automatically put into flash later by linker and their LMA overlaps with .data Co-authored-by: Ming Yue <mingyue86010@gmail.com>
This commit is contained in:
@ -37,7 +37,7 @@ SECTIONS
|
|||||||
.text :
|
.text :
|
||||||
{
|
{
|
||||||
KEEP(*(.isr_vector))
|
KEEP(*(.isr_vector))
|
||||||
*(.text)
|
*(.text*)
|
||||||
*(.rodata*)
|
*(.rodata*)
|
||||||
_etext = .;
|
_etext = .;
|
||||||
} > FLASH
|
} > FLASH
|
||||||
|
Reference in New Issue
Block a user