From: Adrian M. <ad...@mc...> - 2001-09-11 21:40:11
|
Thanks to the help I was give earlier I am not getting at least somethings to compile - but like others on this list I have no experience of cross compiling - or indeed of ever compiling a project of this size. The compile is now halting on this: Any clues anyone? sh4-linux-gcc -E -traditional -C -P -I/home/Adrian/linux/include -Ush arch/sh/vm linux.lds.S >arch/sh/vmlinux.lds sh4-linux-ld -EL -T arch/sh/vmlinux.lds -e _stext arch/sh/kernel/head.o arch/sh/ kernel/init_task.o init/main.o init/version.o \ --start-group \ arch/sh/kernel/kernel.o arch/sh/mm/mm.o kernel/kernel.o mm/mm.o fs/fs.o ipc/ipc.o \ drivers/char/char.o drivers/block/block.o drivers/misc/misc.o drivers/n et/net.o drivers/media/media.o drivers/video/video.o \ net/network.o \ /home/Adrian/linux/arch/sh/lib/lib.a /home/Adrian/linux/lib/lib.a /home/ Adrian/linux/arch/sh/lib/lib.a /opt/billgatliff/H-i686-pc-linux-gnu/sh4-linux/li b/gcc-lib/sh4-linux/3.0/libgcc.a \ --end-group \ -o vmlinux net/network.o: In function `skb_copy_bits': net/network.o(.text+0x4530): undefined reference to `BUG_TRAP' net/network.o: In function `skb_checksum': net/network.o(.text+0x46ac): undefined reference to `BUG_TRAP' net/network.o(.text+0x46b0): undefined reference to `csum_block_add' net/network.o: In function `skb_copy_and_csum_bits': net/network.o(.text+0x4848): undefined reference to `csum_partial_copy_nocheck' net/network.o(.text+0x484c): undefined reference to `BUG_TRAP' net/network.o(.text+0x4850): undefined reference to `csum_block_add' net/network.o: In function `skb_copy_datagram_iovec': net/network.o(.text+0x5248): undefined reference to `BUG_TRAP' net/network.o: In function `skb_copy_and_csum_datagram': net/network.o(.text+0x5414): undefined reference to `csum_and_copy_to_user' net/network.o(.text+0x5418): undefined reference to `BUG_TRAP' net/network.o(.text+0x541c): undefined reference to `csum_block_add' net/network.o: In function `skb_copy_and_csum_datagram_iovec': net/network.o(.text+0x5504): undefined reference to `csum_fold' make: *** [vmlinux] Error 1 |
From: Adrian M. <ad...@mc...> - 2001-09-12 22:33:14
|
On Tuesday 11 September 2001 10:38 pm, Adrian McMenamin wrote: > Thanks to the help I was give earlier I am not getting at least somethings > to compile - but like others on this list I have no experience of cross > compiling - or indeed of ever compiling a project of this size. > Well, obviously this is a linking error, but I need some clues as to what additional things to tell the linker? Any ideas - I'm scanned through the whole list and got nwhere further forward on this one. |
From: M. R. B. <mr...@0x...> - 2001-09-12 22:46:50
|
* Adrian McMenamin <ad...@mc...> on Wed, Sep 12, 2001: > On Tuesday 11 September 2001 10:38 pm, Adrian McMenamin wrote: > > Thanks to the help I was give earlier I am not getting at least somethings > > to compile - but like others on this list I have no experience of cross > > compiling - or indeed of ever compiling a project of this size. > > > Well, obviously this is a linking error, but I need some clues as to what > additional things to tell the linker? Any ideas - I'm scanned through the > whole list and got nwhere further forward on this one. You have some broken dependencies in the kernel. Go through your config again (e.g. make ... menuconfig) and make sure you've picked the relevant networking options - those missing functions belong to the net driver. M. R. |
From: Adrian M. <ad...@mc...> - 2001-09-12 23:15:46
|
Scartch the last message - I fiddled with the path and got it to compile. Does this problem mean that the cvs has gotten ahead of the supplied .config? Or have I simply kludged the whole thing for the sake of a compile? My special thanks to MR Brown for help in getting me this far :-> |
From: M. R. B. <mr...@0x...> - 2001-09-12 23:23:09
|
* Adrian McMenamin <ad...@mc...> on Thu, Sep 13, 2001: > Scartch the last message - I fiddled with the path and got it to compile. > > Does this problem mean that the cvs has gotten ahead of the supplied .config? > Or have I simply kludged the whole thing for the sake of a compile? > The linuxdc.org site desperately needs updating/redoing. Yeah that .config is about 4-5mos old, sorry you had to figure this out the hard way :). If anyone out there has suggestions for improvement, or would like to contribute in some way to redesigning the site, we're open for ideas - just let us know. > My special thanks to MR Brown for help in getting me this far :-> > No problem, that's what I'm here for :P. And kernel driver work is very much active, current work includes redesigning the framebuffer, improving the GD-ROM driver, and other internal cleanups. M. R. |