On 4/13/06, Niels Larsen <[EMAIL PROTECTED]> wrote: > > 4.) can you please show us more detail on the error other than the last > > line, say 15 lines above up until the end of the error. > drivers/built-in.o(.text+0x38d78): In function `handle_diacr': > : undefined reference to `accent_table'
Is there anything else, just above this? Try to find the first occurrence in this series where it says "In function..." and the command that was being run just prior to this. Here's an example from Google (on an old kernel): make[1]: Leaving directory `/usr/src/linux-2.5.24/init' ld -m elf_i386 -T /usr/src/linux-2.5.24/arch/i386/vmlinux.lds -e stext arch/i386/kernel/head.o arch/i386/kernel/init_task.o init/init.o --start-group arch/i386/kernel/kernel.o arch/i386/mm/mm.o kernel/kernel.o mm/mm.o fs/fs.o ipc/ipc.o /usr/src/linux-2.5.24/arch/i386/lib/lib.a lib/lib.a /usr/src/linux-2.5.24/arch/i386/lib/lib.a drivers/built-in.o sound/sound.o arch/i386/pci/pci.o net/network.o --end-group -o vmlinux drivers/built-in.o: In function `vt_ioctl': drivers/built-in.o(.text+0x11833): undefined reference to `key_maps' drivers/built-in.o(.text+0x118e6): undefined reference to `key_maps' ... Then we can see on what it's actually bombing on. -- Dan -- http://linuxfromscratch.org/mailman/listinfo/lfs-support FAQ: http://www.linuxfromscratch.org/lfs/faq.html Unsubscribe: See the above information page
