adjusting.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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-tools-adjusting">
  7. <title>Adjusting the Toolchain</title>
  8. <?dbhtml filename="adjusting.html"?>
  9. <para>Now that the temporary C libraries have been installed, all
  10. tools compiled in the rest of this chapter should be linked against
  11. these libraries. In order to accomplish this, the linker and the
  12. compiler's specs file need to be adjusted.</para>
  13. <para>The linker, adjusted at the end of the first pass of Binutils,
  14. is installed by running the following command from within the
  15. <filename class="directory">binutils-build</filename> directory:</para>
  16. <screen><userinput>make -C ld install</userinput></screen>
  17. <para>From this point onwards, everything will link only
  18. against the libraries in <filename class="directory">/tools/lib</filename>.</para>
  19. <note><para>If the earlier warning to retain the Binutils source and
  20. build directories from the first pass was missed, ignore the above
  21. command. This results in a small chance that the subsequent testing
  22. programs will link against libraries on the host. This is not ideal,
  23. but it is not a major problem. The situation is corrected when the
  24. second pass of Binutils is installed later.</para></note>
  25. <para>Now that the adjusted linker is installed, the Binutils build and source
  26. directories should be removed.</para>
  27. <para>The next task is to amend the GCC specs file so that it points
  28. to the new dynamic linker. A simple sed script will accomplish this:</para>
  29. <!-- Ampersands are needed to allow copy and paste -->
  30. <screen><userinput>SPECFILE=`gcc --print-file specs` &amp;&amp;
  31. sed 's@ /lib/ld-linux.so.2@ /tools/lib/ld-linux.so.2@g' \
  32. $SPECFILE &gt; tempspecfile &amp;&amp;
  33. mv -f tempspecfile $SPECFILE &amp;&amp;
  34. unset SPECFILE</userinput></screen>
  35. <para>It is recommended that the above
  36. command be copy-and-pasted in order to ensure accuracy.
  37. Alternatively, the specs file can be edited by hand. This is done by
  38. replacing every occurrence of <quote>/lib/ld-linux.so.2</quote> with
  39. <quote>/tools/lib/ld-linux.so.2</quote></para>
  40. <para>Be sure to visually inspect the specs file in order to verify the
  41. intended changes have been made.</para>
  42. <important><para>If working on a platform where the name of the
  43. dynamic linker is something other than
  44. <filename class="libraryfile">ld-linux.so.2</filename>, replace
  45. <quote>ld-linux.so.2</quote> with the name of the platform's
  46. dynamic linker in the above commands. Refer back to <xref
  47. linkend="ch-tools-toolchaintechnotes" role=","/> if
  48. necessary.</para></important>
  49. <para>There is a possibility that some include files from the host
  50. system have found their way into GCC's private include dir. This can
  51. happen as a result of GCC's <quote>fixincludes</quote> process, which runs as part
  52. of the GCC build. This is explained in more detail later in this
  53. chapter. Run the following command to eliminate this
  54. possibility:</para>
  55. <screen><userinput>rm -f /tools/lib/gcc/*/*/include/{pthread.h,bits/sigthread.h}</userinput></screen>
  56. <caution><para>At this point, it is imperative to stop and ensure that
  57. the basic functions (compiling and linking) of the new toolchain are
  58. working as expected. To perform a sanity check, run the following
  59. commands:</para>
  60. <screen><userinput>echo 'main(){}' &gt; dummy.c
  61. cc dummy.c
  62. readelf -l a.out | grep ': /tools'</userinput></screen>
  63. <para>If everything is working correctly, there should be no errors,
  64. and the output of the last command will be of the form:</para>
  65. <screen><computeroutput>[Requesting program interpreter:
  66. /tools/lib/ld-linux.so.2]</computeroutput></screen>
  67. <para>Note that <filename class="directory">/tools/lib</filename>
  68. appears as the prefix of the dynamic linker.</para>
  69. <para>If the output is not shown as above or there was no output at
  70. all, then something is wrong. Investigate and retrace the steps to
  71. find out where the problem is and correct it. This issue must be
  72. resolved before continuing on. First, perform the sanity check again,
  73. using <command>gcc</command> instead of <command>cc</command>. If this
  74. works, then the <filename class="symlink">/tools/bin/cc</filename> symlink is missing.
  75. Revisit <xref linkend="ch-tools-gcc-pass1" role=","/> and install the symlink.
  76. Next, ensure that the <envar>PATH</envar> is correct. This can be checked by running
  77. <command>echo $PATH</command> and verifying that <filename
  78. class="directory">/tools/bin</filename> is at the head of the list. If
  79. the <envar>PATH</envar> is wrong it could mean that you are not logged in as user
  80. <emphasis>lfs</emphasis> or that something went wrong back in <xref
  81. linkend="ch-tools-settingenviron" role="."/> Another option is that something
  82. may have gone wrong with the specs file amendment above. In this case,
  83. redo the specs file amendment, being careful to copy-and-paste the
  84. commands.</para>
  85. <para>Once all is well, clean up the test files:</para>
  86. <screen><userinput>rm dummy.c a.out</userinput></screen>
  87. </caution>
  88. </sect1>