Thiago Padilha wrote: > Hi, I have started following LFS book 6.6 and everything went fine > until Chaper 6.10 > (http://www.linuxfromscratch.org/lfs/view/stable/chapter06/readjusting.html). > When I verify the linker search path the output should be : > > SEARCH_DIR("/tools/i686-pc-linux-gnu/lib") > SEARCH_DIR("/usr/lib") > SEARCH_DIR("/lib"); > > Mine is : > > SEARCH_DIR("/tools/x86_64-unknown-linux-gnu/lib64") > SEARCH_DIR("/tools/x86_64-unknown-linux-gnu/lib") > SEARCH_DIR("/usr/lib") > SEARCH_DIR("lib"); > > Notice the last search dir, it is 'lib' instead of '/lib' ! I don't > know if that is a problem, I'm a newbie to linux so I don't understand > all the commands I give, but most of the time I just copied and > pasted. Can someone help me ?
Are you sure you used the right command in binutils pass2? It should have been: make -C ld LIB_PATH=/usr/lib:/lib If it was LIB_PATH=/usr/lib:lib, I think that could have caused the problem you report. -- Bruce -- http://linuxfromscratch.org/mailman/listinfo/lfs-support FAQ: http://www.linuxfromscratch.org/lfs/faq.html Unsubscribe: See the above information page
