> 
> You could also check the libraries:
> 
> $ ldd /tools/bin/env
> linux-gate.so.1 => (0xffffe000)
> libc.so.6 => /tools/lib/libc.so.6 (0xb7e6e000)
> /tools/lib/ld-linux.so.2 (0xb7fbd000)
> 


There we go!

 

# ldd /tools/bin/env
        linux-gate.so.1 =>  (0x006cb000)
        libc.so.6 => /lib/libc.so.6 (0x007df000)
        /lib/ld-linux.so.2 (0x007c1000)


For some reason the coreutils executables have linked to /lib/ld-linux.so.2.  
If I make a symlink of /tools/lib/ld-linux.so.2 -> /lib/ld-linux.so.2 
everything in coreutils works perfectly.  Now I suspect since glibc is the 
first thing to be built that this one symlink isn't going to effect the system 
since it will be replaced by the real thing before anything else gets compiled. 
 Am I right in thinking this or will I need to fix coreutils before I continue?

 

Thanks

Russ

_________________________________________________________________
POP access for Hotmail is here! Click here to find out more
http://windowslive.ninemsn.com.au/article.aspx?id=802246
-- 
http://linuxfromscratch.org/mailman/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/lfs/faq.html
Unsubscribe: See the above information page

Reply via email to