From 2f51006020feebd50956e889ca2c111302f95f31 Mon Sep 17 00:00:00 2001 From: Moe Ghasemi Date: Wed, 7 Oct 2020 10:00:57 -0700 Subject: [PATCH] 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 --- FreeRTOS/Demo/CORTEX_LM3S811_GCC/standalone.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FreeRTOS/Demo/CORTEX_LM3S811_GCC/standalone.ld b/FreeRTOS/Demo/CORTEX_LM3S811_GCC/standalone.ld index 8ee3fe2f84..557828c279 100644 --- a/FreeRTOS/Demo/CORTEX_LM3S811_GCC/standalone.ld +++ b/FreeRTOS/Demo/CORTEX_LM3S811_GCC/standalone.ld @@ -37,7 +37,7 @@ SECTIONS .text : { KEEP(*(.isr_vector)) - *(.text) + *(.text*) *(.rodata*) _etext = .; } > FLASH