From 31ada952d04a649932b93b3919167ceef0164c31 Mon Sep 17 00:00:00 2001 From: Rene Rebe Date: Tue, 6 May 2008 11:23:29 +0200 Subject: Handle .rodata* sections in linker script Make it link at all. --- src/main.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 = .; -- cgit v1.2.1