source: chapter05/binutils-pass2.xml@ 61ce0b1

7.6-systemd 7.7-systemd 7.8-systemd 7.9-systemd
Last change on this file since 61ce0b1 was 61ce0b1, checked in by DJ Lucas <dj@…>, 10 years ago

Synchronized with LFS-SVN-20140611.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd/BOOK@10576 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 4.8 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
[b06ca36]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[673b0d8]4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
[81109e3]7
[9652249]8<sect1 id="ch-tools-binutils-pass2" role="wrap">
[81109e3]9 <?dbhtml filename="binutils-pass2.html"?>
10
[e747759]11 <sect1info condition="script">
12 <productname>binutils</productname>
13 <productnumber>&binutils-version;</productnumber>
14 <address>&binutils-url;</address>
15 </sect1info>
16
[81109e3]17 <title>Binutils-&binutils-version; - Pass 2</title>
18
19 <indexterm zone="ch-tools-binutils-pass2">
20 <primary sortas="a-Binutils">Binutils</primary>
21 <secondary>tools, pass 2</secondary>
22 </indexterm>
23
24 <sect2 role="package">
25 <title/>
[bc82645e]26
[d9441360]27 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[81109e3]28 href="../chapter06/binutils.xml"
29 xpointer="xpointer(/sect1/sect2[1]/para[1])"/>
[81fd230]30
[81109e3]31 <segmentedlist>
32 <segtitle>&buildtime;</segtitle>
33 <segtitle>&diskspace;</segtitle>
[5888299]34
[81109e3]35 <seglistitem>
[e4a5635]36 <seg>&binutils-ch5p2-sbu;</seg>
37 <seg>&binutils-ch5p2-du;</seg>
[81109e3]38 </seglistitem>
39 </segmentedlist>
[73aedd1d]40
[81109e3]41 </sect2>
[9652249]42
[81109e3]43 <sect2 role="installation">
[4e82d47]44 <title>Installation of Binutils</title>
[73aedd1d]45
[81109e3]46 <para>Create a separate build directory again:</para>
[73aedd1d]47
[0445a3d]48<screen><userinput remap="pre">mkdir -v ../binutils-build
[73aedd1d]49cd ../binutils-build</userinput></screen>
50
[81109e3]51 <para>Prepare Binutils for compilation:</para>
[73aedd1d]52
[50420218]53<screen><userinput remap="configure">CC=$LFS_TGT-gcc \
54AR=$LFS_TGT-ar \
55RANLIB=$LFS_TGT-ranlib \
[e2c4848]56../binutils-&binutils-version;/configure \
[50420218]57 --prefix=/tools \
58 --disable-nls \
[61ce0b1]59 --disable-werror \
[a9296cd]60 --with-lib-path=/tools/lib \
61 --with-sysroot</userinput></screen>
[73aedd1d]62
[81109e3]63 <variablelist>
64 <title>The meaning of the new configure options:</title>
[73aedd1d]65
[4e82d47]66 <varlistentry>
[d38ac3a]67 <term><parameter>CC=$LFS_TGT-gcc AR=$LFS_TGT-ar RANLIB=$LFS_TGT-ranlib</parameter></term>
[4e82d47]68 <listitem>
69 <para>Because this is really a native build of Binutils, setting these
70 variables ensures that the build system uses the cross-compiler and
71 associated tools instead of the ones on the host system.</para>
72 </listitem>
73 </varlistentry>
74
[81109e3]75 <varlistentry>
76 <term><parameter>--with-lib-path=/tools/lib</parameter></term>
77 <listitem>
78 <para>This tells the configure script to specify the library
79 search path during the compilation of Binutils, resulting in
80 <filename class="directory">/tools/lib</filename> being passed
81 to the linker. This prevents the linker from searching through
82 library directories on the host.</para>
83 </listitem>
84 </varlistentry>
[73aedd1d]85
[a9296cd]86 <varlistentry>
87 <term><parameter>--with-sysroot</parameter></term>
88 <listitem>
89 <para>The sysroot feature enables the linker to find shared objects
90 which are required by other shared objects explicitly included on the
91 linker's command line. Without this, some packages may not build
92 successfully on some hosts.</para>
93 </listitem>
94 </varlistentry>
95
[81109e3]96 </variablelist>
97
98 <para>Compile the package:</para>
[3d36131c]99
[0445a3d]100<screen><userinput remap="make">make</userinput></screen>
[9dfc02f]101
[81109e3]102 <para>Install the package:</para>
[73aedd1d]103
[0445a3d]104<screen><userinput remap="install">make install</userinput></screen>
[79f74200]105
[2914987b]106 <para>Now prepare the linker for the <quote>Re-adjusting</quote> phase in
107 the next chapter:</para>
108
[0445a3d]109<screen><userinput remap="adjust">make -C ld clean
[a11b40f]110make -C ld LIB_PATH=/usr/lib:/lib
[2914987b]111cp -v ld/ld-new /tools/bin</userinput></screen>
112
[4e82d47]113 <variablelist>
114 <title>The meaning of the make parameters:</title>
115
116 <varlistentry>
117 <term><parameter>-C ld clean</parameter></term>
118 <listitem>
119 <para>This tells the make program to remove all compiled
120 files in the <filename class="directory">ld</filename>
121 subdirectory.</para>
122 </listitem>
123 </varlistentry>
124
125 <varlistentry>
126 <term><parameter>-C ld LIB_PATH=/usr/lib:/lib</parameter></term>
127 <listitem>
128 <para>This option rebuilds everything in the <filename
129 class="directory">ld</filename> subdirectory. Specifying the
130 <envar>LIB_PATH</envar> Makefile variable on the command line
131 allows us to override the default value of the temporary tools
132 and point it to the proper final path. The value of this variable
133 specifies the linker's default library search path. This
134 preparation is used in the next chapter.</para>
135 </listitem>
136 </varlistentry>
137
138 </variablelist>
139
[81109e3]140 </sect2>
[73aedd1d]141
[81109e3]142 <sect2 role="content">
143 <title/>
[5888299]144
[81109e3]145 <para>Details on this package are located in
146 <xref linkend="contents-binutils" role="."/></para>
[81fd230]147
[81109e3]148 </sect2>
[81fd230]149
[81109e3]150</sect1>
Note: See TracBrowser for help on using the repository browser.