binutils-pass2.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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-pass2</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/2001/XInclude"
  22. href="../chapter08/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-tmpp2-sbu;</seg>
  29. <seg>&binutils-tmpp2-du;</seg>
  30. </seglistitem>
  31. </segmentedlist>
  32. </sect2>
  33. <sect2 role="installation">
  34. <title>Installation of Binutils</title>
  35. <para>Create a separate build directory again:</para>
  36. <screen><userinput remap="pre">mkdir -v build
  37. cd build</userinput></screen>
  38. <para>Prepare Binutils for compilation:</para>
  39. <screen><userinput remap="configure">../configure \
  40. --prefix=/usr \
  41. --build=$(../config.guess) \
  42. --host=$LFS_TGT \
  43. --disable-nls \
  44. --enable-shared \
  45. --disable-werror \
  46. --enable-64-bit-bfd</userinput></screen>
  47. <variablelist>
  48. <title>The meaning of the new configure options:</title>
  49. <varlistentry>
  50. <term><parameter>--host=$LFS_TGT</parameter></term>
  51. <listitem>
  52. <para>This tells the configure script that we want to build
  53. this pass of binutils for the $LFS_TGT machine, using our just
  54. built cross-compiler. This prevents the linker from searching
  55. through library directories on the host.</para>
  56. </listitem>
  57. </varlistentry>
  58. </variablelist>
  59. <para>Compile the package:</para>
  60. <screen><userinput remap="make">make</userinput></screen>
  61. <para>Install the package:</para>
  62. <screen><userinput remap="install">make DESTDIR=$LFS install</userinput></screen>
  63. </sect2>
  64. <sect2 role="content">
  65. <title/>
  66. <para>Details on this package are located in
  67. <xref linkend="contents-binutils" role="."/></para>
  68. </sect2>
  69. </sect1>