binutils-pass1.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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-pass1" role="wrap">
  8. <?dbhtml filename="binutils-pass1.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 1</title>
  15. <indexterm zone="ch-tools-binutils-pass1">
  16. <primary sortas="a-Binutils">Binutils</primary>
  17. <secondary>tools, pass 1</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-ch5p1-sbu;</seg>
  29. <seg>&binutils-ch5p1-du;</seg>
  30. </seglistitem>
  31. </segmentedlist>
  32. </sect2>
  33. <sect2 role="installation">
  34. <title>Installation of Cross Binutils</title>
  35. <para>It is important that Binutils be the first package compiled
  36. because both Glibc and GCC perform various tests on the available
  37. linker and assembler to determine which of their own features to
  38. enable.</para>
  39. <para>Binutils does not recognize versions of Texinfo newer than 4.9. Fix
  40. this issue by applying the following patch:</para>
  41. <screen><userinput remap="pre">patch -Np1 -i ../&binutils-configure-patch;</userinput></screen>
  42. <para>The Binutils documentation recommends building Binutils outside of the
  43. source directory in a dedicated build directory:</para>
  44. <screen><userinput remap="pre">mkdir -v ../binutils-build
  45. cd ../binutils-build</userinput></screen>
  46. <note>
  47. <para>In order for the SBU values listed in the rest of the book
  48. to be of any use, measure the time it takes to build this package from
  49. the configuration, up to and including the first install. To achieve
  50. this easily, wrap the three commands in a <command>time</command>
  51. command like this: <userinput>time { ./configure ... &amp;&amp; make
  52. &amp;&amp; make install; }</userinput>.</para>
  53. </note>
  54. <para>Now prepare Binutils for compilation:</para>
  55. <screen><userinput remap="configure">../binutils-&binutils-version;/configure \
  56. --target=$LFS_TGT --prefix=/tools \
  57. --disable-nls --disable-werror</userinput></screen>
  58. <variablelist>
  59. <title>The meaning of the configure options:</title>
  60. <varlistentry>
  61. <term><envar>--target=$LFS_TGT</envar></term>
  62. <listitem>
  63. <para>Because the machine description in the <envar>LFS_TGT</envar>
  64. variable is slightly different than the value returned by the
  65. config.guess script, this switch will tell the configure script to
  66. adjust Binutil's build system for building a cross linker.
  67. </para>
  68. </listitem>
  69. </varlistentry>
  70. <varlistentry>
  71. <term><parameter>--prefix=/tools</parameter></term>
  72. <listitem>
  73. <para>This tells the configure script to prepare to install the
  74. Binutils programs in the <filename class="directory">/tools</filename>
  75. directory.</para>
  76. </listitem>
  77. </varlistentry>
  78. <varlistentry>
  79. <term><parameter>--disable-nls</parameter></term>
  80. <listitem>
  81. <para>This disables internationalization as i18n is not needed for the
  82. temporary tools.</para>
  83. </listitem>
  84. </varlistentry>
  85. <varlistentry>
  86. <term><parameter>--disable-werror</parameter></term>
  87. <listitem>
  88. <para>This prevents the build from stopping in the event that there
  89. are warnings from the host's compiler.</para>
  90. </listitem>
  91. </varlistentry>
  92. </variablelist>
  93. <para>Continue with compiling the package:</para>
  94. <screen><userinput remap="make">make</userinput></screen>
  95. <para>Compilation is now complete. Ordinarily we would now run the
  96. test suite, but at this early stage the test suite framework (Tcl,
  97. Expect, and DejaGNU) is not yet in place. The benefits of running the
  98. tests at this point are minimal since the programs from this
  99. first pass will soon be replaced by those from the second.</para>
  100. <para>If building on x86_64, create a symlink to ensure the sanity of
  101. the toolchain:</para>
  102. <screen><userinput remap="install">case $(uname -m) in
  103. x86_64) mkdir -v /tools/lib &amp;&amp; ln -sv lib /tools/lib64 ;;
  104. esac</userinput></screen>
  105. <para>Install the package:</para>
  106. <screen><userinput remap="install">make install</userinput></screen>
  107. </sect2>
  108. <sect2 role="content">
  109. <title/>
  110. <para>Details on this package are located in
  111. <xref linkend="contents-binutils" role="."/></para>
  112. </sect2>
  113. </sect1>