adjusting.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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-tools-adjusting">
  8. <?dbhtml filename="adjusting.html"?>
  9. <title>Adjusting the Toolchain</title>
  10. <para>Now that the temporary C libraries have been installed, all
  11. tools compiled in the rest of this chapter should be linked against
  12. these libraries. In order to accomplish this, the linker and the
  13. compiler's specs file need to be adjusted.</para>
  14. <para>The linker, adjusted at the end of the first pass of Binutils,
  15. is installed by running the following command from within the
  16. <filename class="directory">binutils-build</filename> directory:</para>
  17. <screen><userinput>make -C ld install</userinput></screen>
  18. <para>From this point onwards, everything will link only against the
  19. libraries in <filename class="directory">/tools/lib</filename>.</para>
  20. <note>
  21. <para>If the earlier warning to retain the Binutils source and
  22. build directories from the first pass was missed, ignore the above
  23. command. This results in a small chance that the subsequent testing
  24. programs will link against libraries on the host. This is not ideal,
  25. but it is not a major problem. The situation is corrected when the
  26. second pass of Binutils is installed later.</para>
  27. </note>
  28. <para>Now that the adjusted linker is installed, the Binutils build and source
  29. directories should be removed.</para>
  30. <para>The next task is to point GCC to the new dynamic linker. This is done by
  31. dumping GCC's <quote>specs</quote> file to a location where GCC will look for it
  32. by default. A simple <command>sed</command> substitution then alters the
  33. dynamic linker that GCC will use:</para>
  34. <!-- Ampersands are needed to allow copy and paste -->
  35. <screen><userinput>SPECFILE=`dirname $(gcc -print-libgcc-file-name)`/specs &amp;&amp;
  36. gcc -dumpspecs > $SPECFILE &amp;&amp;
  37. sed 's@^/lib/ld-linux.so.2@/tools&amp;@g' $SPECFILE &gt; tempspecfile &amp;&amp;
  38. mv -vf tempspecfile $SPECFILE &amp;&amp;
  39. unset SPECFILE</userinput></screen>
  40. <para>It is recommended that the above command be copy-and-pasted in order to
  41. ensure accuracy. Alternatively, the specs file can be edited by hand. This is
  42. done by replacing every occurrence of <quote>/lib/ld-linux.so.2</quote> with
  43. <quote>/tools/lib/ld-linux.so.2</quote></para>
  44. <para>Be sure to visually inspect the specs file in order to verify the
  45. intended changes have been made.</para>
  46. <important>
  47. <para>If working on a platform where the name of the dynamic linker is
  48. something other than <filename class="libraryfile">ld-linux.so.2</filename>,
  49. replace <quote>ld-linux.so.2</quote> with the name of the platform's
  50. dynamic linker in the above commands. Refer back to <xref
  51. linkend="ch-tools-toolchaintechnotes" role=","/> if necessary.</para>
  52. </important>
  53. <para>During the build process, GCC runs a script
  54. (<command>fixincludes</command>) that scans the system for header files
  55. that may need to be fixed (they might contain syntax errors, for example),
  56. and installs the fixed versions in a private include directory. There is a
  57. possibility that, as a result of this process, some header files from the
  58. host system have found their way into GCC's private include directory. As
  59. the rest of this chapter only requires the headers from GCC and Glibc,
  60. which have both been installed at this point, any <quote>fixed</quote>
  61. headers can safely be removed. This helps to avoid any host headers
  62. polluting the build environment. Run the following commands to remove the
  63. header files in GCC's private include directory (you may find it easier to
  64. copy and paste these commands, rather than typing them by hand, due to
  65. their length):</para>
  66. <!-- && used to ease copy and pasting -->
  67. <screen><userinput>GCC_INCLUDEDIR=`dirname $(gcc -print-libgcc-file-name)`/include &amp;&amp;
  68. find ${GCC_INCLUDEDIR}/* -maxdepth 0 -xtype d -exec rm -rvf '{}' \; &amp;&amp;
  69. rm -vf `grep -l "DO NOT EDIT THIS FILE" ${GCC_INCLUDEDIR}/*` &amp;&amp;
  70. unset GCC_INCLUDEDIR</userinput></screen>
  71. <caution>
  72. <para>At this point, it is imperative to stop and ensure that the basic
  73. functions (compiling and linking) of the new toolchain are working as
  74. expected. To perform a sanity check, run the following commands:</para>
  75. <screen><userinput>echo 'main(){}' &gt; dummy.c
  76. cc dummy.c
  77. readelf -l a.out | grep ': /tools'</userinput></screen>
  78. <para>If everything is working correctly, there should be no errors,
  79. and the output of the last command will be of the form:</para>
  80. <screen><computeroutput>[Requesting program interpreter:
  81. /tools/lib/ld-linux.so.2]</computeroutput></screen>
  82. <para>Note that <filename class="directory">/tools/lib</filename>
  83. appears as the prefix of the dynamic linker.</para>
  84. <para>If the output is not shown as above or there was no output at all,
  85. then something is wrong. Investigate and retrace the steps to find out
  86. where the problem is and correct it. This issue must be resolved before
  87. continuing on. First, perform the sanity check again, using
  88. <command>gcc</command> instead of <command>cc</command>. If this works,
  89. then the <filename class="symlink">/tools/bin/cc</filename> symlink is
  90. missing. Revisit <xref linkend="ch-tools-gcc-pass1" role=","/> and install
  91. the symlink. Next, ensure that the <envar>PATH</envar> is correct. This
  92. can be checked by running <command>echo $PATH</command> and verifying that
  93. <filename class="directory">/tools/bin</filename> is at the head of the
  94. list. If the <envar>PATH</envar> is wrong it could mean that you are not
  95. logged in as user <systemitem class="username">lfs</systemitem> or that
  96. something went wrong back in <xref linkend="ch-tools-settingenviron"
  97. role="."/> Another option is that something may have gone wrong with the
  98. specs file amendment above. In this case, redo the specs file amendment,
  99. being careful to copy-and-paste the commands.</para>
  100. <para>Once all is well, clean up the test files:</para>
  101. <screen><userinput>rm -v dummy.c a.out</userinput></screen>
  102. <para>Building TCL in the next section will serve as an additional check that
  103. the toolchain has been built properly. If TCL fails to build, it is an
  104. indication that something has gone wrong with the Binutils, GCC, or Glibc
  105. installation, but not with TCL itself.</para>
  106. </caution>
  107. </sect1>