readjusting.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-system-readjusting">
  8. <?dbhtml filename="readjusting.html"?>
  9. <title>Re-adjusting the Toolchain</title>
  10. <para>Now that the final C libraries have been installed, it is time to adjust
  11. the toolchain again. The toolchain will be adjusted so that it will link any
  12. newly compiled program against these new libraries. This is a similar process
  13. used in the <quote>Adjusting</quote> phase in the beginning of <xref
  14. linkend="chapter-temporary-tools"/>, but with the adjustments reversed. In <xref
  15. linkend="chapter-temporary-tools"/>, the chain was guided from the host's
  16. <filename class="directory">/{,usr/}lib</filename> directories to the new
  17. <filename class="directory">/tools/lib</filename> directory. Now, the chain will
  18. be guided from that same <filename class="directory">/tools/lib</filename>
  19. directory to the LFS <filename class="directory">/{,usr/}lib</filename>
  20. directories.</para>
  21. <para>First, backup the <filename class="directory">/tools</filename> linker,
  22. and replace it with the adjusted linker we made in chapter 5. We'll also create
  23. a link to its counterpart in <filename class="directory">/tools/$(gcc
  24. -dumpmachine)/bin</filename>.</para>
  25. <screen><userinput>mv -v /tools/bin/{ld,ld-old}
  26. mv -v /tools/$(gcc -dumpmachine)/bin/{ld,ld-old}
  27. mv -v /tools/bin/{ld-new,ld}
  28. ln -sv /tools/bin/ld /tools/$(gcc -dumpmachine)/bin/ld</userinput></screen>
  29. <para>Next, amend the GCC specs file so that it points to the new
  30. dynamic linker, and so that GCC knows where to find its start files.
  31. A <command>perl</command> command accomplishes this.</para>
  32. <important>
  33. <para>If working on a platform where the name of the dynamic linker is
  34. something other than <filename class="libraryfile">ld-linux.so.2</filename>,
  35. substitute <quote>ld-linux.so.2</quote> with the name of the platform's
  36. dynamic linker in the following commands. Refer to <xref
  37. linkend="ch-tools-toolchaintechnotes" role=","/> if necessary.</para>
  38. </important>
  39. <screen><userinput>gcc -dumpspecs | \
  40. perl -p -e 's@/tools/lib/ld-linux.so.2@/lib/ld-linux.so.2@g;' \
  41. -e 's@\*startfile_prefix_spec:\n@$_/usr/lib/ @g;' &gt; \
  42. `dirname $(gcc --print-libgcc-file-name)`/specs</userinput></screen>
  43. <para>It is a good idea to visually inspect the specs file to verify the
  44. intended change was actually made.</para>
  45. <para>It is imperative at this point to ensure that the basic
  46. functions (compiling and linking) of the adjusted toolchain are working
  47. as expected. To do this, perform the following sanity checks:</para>
  48. <screen role="nodump" os="a"><userinput>echo 'main(){}' &gt; dummy.c
  49. cc dummy.c -Wl,--verbose &amp;&gt; dummy.log
  50. readelf -l a.out | grep ': /lib'</userinput></screen>
  51. <para os="b">If everything is working correctly, there should be no errors,
  52. and the output of the last command will be (allowing for
  53. platform-specific differences in dynamic linker name):</para>
  54. <screen os="c"><computeroutput>[Requesting program interpreter: /lib/ld-linux.so.2]</computeroutput></screen>
  55. <para>Note that <filename class="directory">/lib</filename> is now
  56. the prefix of our dynamic linker.</para>
  57. <para os="d">Now make sure that we're setup to use the correct startfiles:</para>
  58. <screen role="nodump" os="e"><userinput>grep -o '/usr/lib.*/crt[1in].* .*' dummy.log</userinput></screen>
  59. <para os="f">If everything is working correctly, there should be no errors,
  60. and the output of the last command will be:</para>
  61. <screen><computeroutput>/usr/lib/crt1.o succeeded
  62. /usr/lib/crti.o succeeded
  63. /usr/lib/crtn.o succeeded</computeroutput></screen>
  64. <para os="g">Next, verify that the new linker is being used with the correct search paths:</para>
  65. <screen role="nodump" os="h"><userinput>grep 'SEARCH.*/usr/lib' dummy.log |sed 's|; |\n|g'</userinput></screen>
  66. <para os="i">If everything is working correctly, there should be no errors,
  67. and the output of the last command will be:</para>
  68. <screen><computeroutput>SEARCH_DIR("/tools/i686-pc-linux-gnu/lib")
  69. SEARCH_DIR("/usr/lib")
  70. SEARCH_DIR("/lib");</computeroutput></screen>
  71. <para os="j">Next make sure that we're using the correct libc:</para>
  72. <screen role="nodump" os="k"><userinput>grep "/lib/libc.so.6 " dummy.log</userinput></screen>
  73. <para os="l">If everything is working correctly, there should be no errors,
  74. and the output of the last command will be:</para>
  75. <screen os="m"><computeroutput>attempt to open /lib/libc.so.6 succeeded</computeroutput></screen>
  76. <para os="n">Lastly, make sure GCC is using the correct dynamic linker:</para>
  77. <screen role="nodump" os="o"><userinput>grep found dummy.log</userinput></screen>
  78. <para os="p">If everything is working correctly, there should be no errors,
  79. and the output of the last command will be (allowing for
  80. platform-specific differences in dynamic linker name):</para>
  81. <screen os="q"><computeroutput>found ld-linux.so.2 at /lib/ld-linux.so.2</computeroutput></screen>
  82. <para os="r">If the output does not appear as shown above or is not received
  83. at all, then something is seriously wrong. Investigate and retrace the
  84. steps to find out where the problem is and correct it. The most likely
  85. reason is that something went wrong with the specs file adjustment. Any
  86. issues will need to be resolved before continuing on with the process.</para>
  87. <para os="s">Once everything is working correctly, clean up the test files:</para>
  88. <screen role="nodump" os="t"><userinput>rm -v dummy.c a.out dummy.log</userinput></screen>
  89. </sect1>