|
Message
From: Will Partain<will.partain@v...>
Date: Wed May 19 13:16:36 CEST 2004
Subject: [openrisc] cbasic problem address 0x38 of cbasic-nocache-O2.or32
jfafinski@h... writes:> I try to run orp/orp_soc/sw/cbasic but I still get this error : > or32-uclinux-ld: warning: no memory region specified for section > `.rodata.str1.1' > or32-uclinux-ld: address 0x38 of cbasic-nocache-O2.or32 section .dummy > is not within region flash
On the `.rodata.str1.1' thing: there's a mismatch between the section names your (cross-)compiler is spitting out and what the linker script (orp.ld) is expecting. In the latter, trying changing...
.rodata : { *(.rodata) } > flash to
.rodata.str1.1 : { *(.rodata.str1.1) } > flash Worked for me :-)
Will
|