From 99259a016e48331272998db27b039cbcc8e7963c Mon Sep 17 00:00:00 2001 From: jeffman Date: Mon, 5 Aug 2019 20:19:39 -0400 Subject: [PATCH] Include string data in linker script --- build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.ps1 b/build.ps1 index 1d25cc7..799f87d 100644 --- a/build.ps1 +++ b/build.ps1 @@ -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