|
Message
From: Matjaz Breskvar<phoenix@o...>
Date: Wed Sep 1 18:42:47 CEST 2004
Subject: [openrisc] or1k: Configuring ORPmon with board.h
* stephensonntag@c... (stephensonntag@c...) wrote: > I posted previously but forgot to include resluting shell text ... > I am trying to build the ORPmon tool for or1k, but I am running into the memory > overlap errors shown below. Do I need the to find the base addresses for memory of the PC I am using? If so, where do I find this? > make[1]: Leaving directory `/home/steve/or1k/orpmon/doc' > or32-uclinux-ld -Tram.ld -o orpmon.or32 reset.o common/common_o.o cmds/cmds.o se rvices/services.o drivers/drivers.o -L./ -lgcc > or32-uclinux-ld: warning: no memory region specified for section `.rodata.str1.1 ' > or32-uclinux-ld: warning: no memory region specified for section `.rodata.cst4' > or32-uclinux-ld: section .rodata.str1.1 [00000000 -> 0000211a] overlaps section .vectors [00000000 -> 00000817] > or32-uclinux-ld: section .rodata.cst4 [0000211c -> 0000211f] overlaps section .t ext [00002000 -> 00010623] > make: *** [orpmon.or32] Error 1 > [root@sonntagswxpl orpmon]#
you'll need to change ram.ld:
.rodata : { *(.rodata) *(.rodata.*) } > ram
best regards, p.
|
 |