This change updates the linker script and dependend wile so that thread local storage sections are properly supported and initailaized
12 lines
233 B
Plaintext
12 lines
233 B
Plaintext
OUTPUT_ARCH( "riscv" )
|
|
|
|
ENTRY( _start )
|
|
|
|
INCLUDE memory_map.ld
|
|
|
|
REGION_ALIAS("LOCATION_TEXT", ram);
|
|
REGION_ALIAS("LOCATION_RODATA", ram);
|
|
REGION_ALIAS("LOCATION_DATA", dram);
|
|
REGION_ALIAS("LOCATION_STACK", dram);
|
|
|
|
INCLUDE sections.ld |