On 1/4/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > #cc -v hello.c <snip> > /tools/lib/gcc/i586-pc-linux-gnu/3.4.3/collect2 --eh-frame-hdr -m elf_i386 > -dynamic-linker /lib/ld-linux.so.2 crt1.o crti.o
We have a winner! You said you were on Ch. 6 glibc, right? Since you haven't readjusted the toolchain, it should be using -dynamic-linker /tools/lib/ld-linux.so.2. There is no /lib/ld-linux.so.2 yet, and that's why it keeps bombing. Seems your gcc specs were not adjusted correctly in Ch. 5.7 or you did not apply the gcc-3.4.3-specs-2.patch in Ch. 5.11. It's probably the second if you passed the sanity check at the end of 5.7. You might try gcc -dumpspecs | grep ld-linux and see what it says. It should refer to /tools/lib/ld-linux.so.2. If this isn't true, you may have to go back a ways in Ch. 5. -- Dan -- http://linuxfromscratch.org/mailman/listinfo/lfs-support FAQ: http://www.linuxfromscratch.org/lfs/faq.html Unsubscribe: See the above information page
