mirror of
https://github.com/FreeRTOS/FreeRTOS.git
synced 2025-06-19 22:57:57 +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 :
|
||||
{
|
||||
KEEP(*(.isr_vector))
|
||||
*(.text)
|
||||
*(.text*)
|
||||
*(.rodata*)
|
||||
_etext = .;
|
||||
} > FLASH
|
||||
|
Reference in New Issue
Block a user