On 1/17/07, James Smith <[EMAIL PROTECTED]> wrote: > Now at end of input. > /tools/lib/gcc/i686-pc-linux-gnu/4.0.3/../../../../i686-pc-linux-gnu/bin/ld: > : No such file: No such file or directory > collect2: ld returned 1 exit status
Seems that you're missing the ld installed in /tools. You should have one at /tools/bin/ld and /tools/i686-pc-linux-gnu/bin/ld that are hard links. You can see this by checking that they're on the same inode. [ 7:33 PM [EMAIL PROTECTED] ls -li /tools/bin/ld /tools/i686-pc-linux-gnu/bin/ld 390628 -rwxr-xr-x 2 dan users 717912 2006-12-08 19:59 /tools/bin/ld 390628 -rwxr-xr-x 2 dan users 717912 2006-12-08 19:59 /tools/i686-pc-linux-gnu/bin/ld The first number is the same. Do you have /tools/i*86-pc-linux-gnu/? -- Dan -- http://linuxfromscratch.org/mailman/listinfo/lfs-support FAQ: http://www.linuxfromscratch.org/lfs/faq.html Unsubscribe: See the above information page
