mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-18 02:37:47 -04: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:
parent
e8fefe0ac9
commit
2f51006020
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ SECTIONS
|
||||||
.text :
|
.text :
|
||||||
{
|
{
|
||||||
KEEP(*(.isr_vector))
|
KEEP(*(.isr_vector))
|
||||||
*(.text)
|
*(.text*)
|
||||||
*(.rodata*)
|
*(.rodata*)
|
||||||
_etext = .;
|
_etext = .;
|
||||||
} > FLASH
|
} > FLASH
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue