readjusting.xml 4.9 KB

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