binutils-pass2.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-tools-binutils-pass2" role="wrap">
  8. <?dbhtml filename="binutils-pass2.html"?>
  9. <sect1info condition="script">
  10. <productname>binutils</productname>
  11. <productnumber>&binutils-version;</productnumber>
  12. <address>&binutils-url;</address>
  13. </sect1info>
  14. <title>Binutils-&binutils-version; - Pass 2</title>
  15. <indexterm zone="ch-tools-binutils-pass2">
  16. <primary sortas="a-Binutils">Binutils</primary>
  17. <secondary>tools, pass 2</secondary>
  18. </indexterm>
  19. <sect2 role="package">
  20. <title/>
  21. <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
  22. href="../chapter06/binutils.xml"
  23. xpointer="xpointer(/sect1/sect2[1]/para[1])"/>
  24. <segmentedlist>
  25. <segtitle>&buildtime;</segtitle>
  26. <segtitle>&diskspace;</segtitle>
  27. <seglistitem>
  28. <seg>&binutils-ch5p2-sbu;</seg>
  29. <seg>&binutils-ch5p2-du;</seg>
  30. </seglistitem>
  31. </segmentedlist>
  32. </sect2>
  33. <sect2 role="installation">
  34. <title>Re-installation of Binutils</title>
  35. <para>Binutils does not recognize versions of Texinfo newer than 4.9. Fix
  36. this issue by applying the following patch:</para>
  37. <screen><userinput remap="pre">patch -Np1 -i ../&binutils-configure-patch;</userinput></screen>
  38. <para>Create a separate build directory again:</para>
  39. <screen><userinput remap="pre">mkdir -v ../binutils-build
  40. cd ../binutils-build</userinput></screen>
  41. <para>Prepare Binutils for compilation:</para>
  42. <screen><userinput remap="configure">../binutils-&binutils-version;/configure --prefix=/tools \
  43. --disable-nls --with-lib-path=/tools/lib</userinput></screen>
  44. <variablelist>
  45. <title>The meaning of the new configure options:</title>
  46. <varlistentry>
  47. <term><parameter>--with-lib-path=/tools/lib</parameter></term>
  48. <listitem>
  49. <para>This tells the configure script to specify the library
  50. search path during the compilation of Binutils, resulting in
  51. <filename class="directory">/tools/lib</filename> being passed
  52. to the linker. This prevents the linker from searching through
  53. library directories on the host.</para>
  54. </listitem>
  55. </varlistentry>
  56. </variablelist>
  57. <para>Compile the package:</para>
  58. <screen><userinput remap="make">make</userinput></screen>
  59. <para>Compilation is now complete. As discussed earlier, running the
  60. test suite is not mandatory for the temporary tools here in this
  61. chapter. To run the Binutils test suite anyway, issue the following
  62. command:</para>
  63. <screen><userinput remap="test">make check</userinput></screen>
  64. <para>Install the package:</para>
  65. <screen><userinput remap="install">make install</userinput></screen>
  66. <para>Now prepare the linker for the <quote>Re-adjusting</quote> phase in
  67. the next chapter:</para>
  68. <screen><userinput remap="adjust">make -C ld clean
  69. make -C ld LIB_PATH=/usr/lib:/lib
  70. cp -v ld/ld-new /tools/bin</userinput></screen>
  71. </sect2>
  72. <sect2 role="content">
  73. <title/>
  74. <para>Details on this package are located in
  75. <xref linkend="contents-binutils" role="."/></para>
  76. </sect2>
  77. </sect1>