summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRene Rebe <rene@exactcode.de>2008-05-06 11:23:29 +0200
committerAndreas Färber <andreas.faerber@web.de>2014-03-12 17:38:31 +0100
commit31ada952d04a649932b93b3919167ceef0164c31 (patch)
treea0351e6a28742c51d65b8186d45e9c26b00469dc
parente9829b5584169ad14df2ca8776b87f4985aa9f06 (diff)
downloadqemu-openhackware-31ada952d04a649932b93b3919167ceef0164c31.tar.gz
Handle .rodata* sections in linker script
Make it link at all.
-rw-r--r--src/main.ld2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.ld b/src/main.ld
index f689f72..3218019 100644
--- a/src/main.ld
+++ b/src/main.ld
@@ -49,7 +49,7 @@ SECTIONS
_sdata_end = . ;
. = ALIGN(4) ;
_ro_start = . ;
- .rodata : { *(.rodata) } > bios
+ .rodata : { *(.rodata*) } > bios
_ro_end = . ;
. = ALIGN(4) ;
_RTAS_start = .;