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:
Moe Ghasemi
2020-10-07 10:00:57 -07:00
committed by GitHub
parent e8fefe0ac9
commit 2f51006020

View File

@ -37,7 +37,7 @@ SECTIONS
.text :
{
KEEP(*(.isr_vector))
*(.text)
*(.text*)
*(.rodata*)
_etext = .;
} > FLASH