Include string data in linker script

This commit is contained in:
jeffman 2019-08-05 20:19:39 -04:00
parent 1c1968e3ab
commit 99259a016e
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ $combine_script_contents =
"SECTIONS { .text 0x$($base_c_address.ToString('X')) : { *(.text .rodata) } }"
$link_script_contents =
"SECTIONS { .text 0x$($base_c_address.ToString('X')) : { *(.text .data .rodata) } }"
"SECTIONS { .text 0x$($base_c_address.ToString('X')) : { *(.text .data .rodata*) } }"
#EndRegion Variables
#Region Functions