I have a warning message that persist so I decided to do something about it
#10247-D creating output section ". text" without a SECTIONS specification
In the EK_TM4C1294XL.cmd, the .text is already defined so not sure why the warning is emitted.
MEMORY
{
FLASH (RX) : origin = 0x00000000, length = 0x00100000
//SRAM (RWX) : origin = 0x20000000, length = 0x00040000
SRAM (RWX) : origin = 0x20000000, length = 0x00028000 //256K-32K-64K = 160K
SRAMFC (RWX) : origin = 0x20028000, length = 0x00008000 //32K
SRAMFD (RWX) : origin = 0x20030000, length = 0x00010000 //64K
}
/* Section allocation in memory */
SECTIONS
{
.text : > FLASH
.const : > FLASH
.cinit : > FLASH
.pinit : > FLASH
.init_array : > FLASH
.data : > SRAM
.bss : > SRAM
.sysmem : > SRAM
.stack : > SRAM
.sramfc : > SRAMFC
.sramfd : > SRAMFD
}
Thank
