source: chapter05/binutils-pass2.xml@ e2ccc32

ml-11.0 multilib xry111/multilib
Last change on this file since e2ccc32 was e2ccc32, checked in by Xℹ Ruoyao <xry111@…>, 3 years ago

Merge upstream; Upgrade isl+firmware; add description to glibc

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

  • Property mode set to 100644
File size: 7.4 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">
[714599f]12 <productname>binutils-pass2</productname>
[e747759]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
[395cf94f]46 <para>Create a separate build directory again:</para>
47
[f1dd547]48<screen><userinput remap="pre">mkdir -v build
49cd build</userinput></screen>
[395cf94f]50
[81109e3]51 <para>Prepare Binutils for compilation:</para>
[73aedd1d]52
[b3f1ebb3]53<screen arch="default"><userinput remap="configure">CC=$LFS_TGT-gcc \
[6458e31]54AR=$LFS_TGT-ar \
55RANLIB=$LFS_TGT-ranlib \
[f1dd547]56../configure \
[6458e31]57 --prefix=/tools \
58 --disable-nls \
[61d3147]59 --disable-werror \
[64aa6f7]60 --with-lib-path=/tools/lib \
61 --with-sysroot</userinput></screen>
[73aedd1d]62
[fd48baa]63<screen arch="ml_32,ml_x32,ml_all"><userinput remap="configure">lpath=/tools/lib</userinput>
64<userinput remap="configure" arch="ml_32,ml_all">lpath="$lpath:/tools/lib32"</userinput>
65<userinput remap="configure" arch="ml_x32,ml_all">lpath="$lpath:/tools/libx32"</userinput>
66<userinput remap="configure">CC=$LFS_TGT-gcc \
[b3f1ebb3]67AR=$LFS_TGT-ar \
68RANLIB=$LFS_TGT-ranlib \
69../configure \
70 --prefix=/tools \
71 --disable-nls \
72 --disable-werror \
[fd48baa]73 --with-lib-path=$lpath \
[b3f1ebb3]74 --with-sysroot \
75 --enable-64-bit-bfd \
76 --enable-multilib</userinput></screen>
77
[81109e3]78 <variablelist>
79 <title>The meaning of the new configure options:</title>
[73aedd1d]80
[4e82d47]81 <varlistentry>
[d38ac3a]82 <term><parameter>CC=$LFS_TGT-gcc AR=$LFS_TGT-ar RANLIB=$LFS_TGT-ranlib</parameter></term>
[4e82d47]83 <listitem>
84 <para>Because this is really a native build of Binutils, setting these
85 variables ensures that the build system uses the cross-compiler and
86 associated tools instead of the ones on the host system.</para>
87 </listitem>
88 </varlistentry>
89
[b3f1ebb3]90 <varlistentry arch="default">
[81109e3]91 <term><parameter>--with-lib-path=/tools/lib</parameter></term>
92 <listitem>
93 <para>This tells the configure script to specify the library
94 search path during the compilation of Binutils, resulting in
95 <filename class="directory">/tools/lib</filename> being passed
96 to the linker. This prevents the linker from searching through
97 library directories on the host.</para>
98 </listitem>
99 </varlistentry>
[73aedd1d]100
[fd48baa]101 <varlistentry arch="ml_32,ml_x32,ml_all">
[b3f1ebb3]102 <term><parameter>--with-lib-path=/tools/lib:...</parameter></term>
103 <listitem>
104 <para>This tells the configure script to specify the library
105 search path during the compilation of Binutils, resulting in
106 <filename class="directory">/tools/lib</filename>,
107 <filename class="directory">/tools/lib32</filename> and
108 <filename class="directory">/tools/libx32</filename> being passed
109 to the linker. This prevents the linker from searching through
110 library directories on the host.</para>
111 </listitem>
112 </varlistentry>
113
[64aa6f7]114 <varlistentry>
115 <term><parameter>--with-sysroot</parameter></term>
116 <listitem>
[e2ccc32]117 <para>This defines a default (non-existent) sysroot directory
118 <filename class="directory">/tools/$LFS_TGT/sys-root</filename>.
119 It is useful when looking for shared objects which are required by
120 other shared objects explicitly included on the linker's command
121 line. Those objects are searched into the directories listed in
122 <filename>&lt;sysroot&gt;/etc/ld.so.conf</filename>, and failing
123 that, into the linker search path, which is right. If this switch
124 is not given, <filename>/etc/ld.so.conf</filename> on the host
125 is used, that is, programs may be linked to libraries on
126 the host, which we want to avoid.</para>
[64aa6f7]127 </listitem>
128 </varlistentry>
129
[fd48baa]130 <varlistentry arch="ml_32,ml_x32,ml_all">
[b3f1ebb3]131 <term><parameter>--enable-64-bit-bfd</parameter></term>
132 <listitem>
133 <para>TODO</para>
134 </listitem>
135 </varlistentry>
136
[fd48baa]137 <varlistentry arch="ml_32,ml_x32,ml_all">
[b3f1ebb3]138 <term><parameter>--enable-multilib</parameter></term>
139 <listitem>
140 <para>TODO</para>
141 </listitem>
142 </varlistentry>
143
[81109e3]144 </variablelist>
145
146 <para>Compile the package:</para>
[3d36131c]147
[0445a3d]148<screen><userinput remap="make">make</userinput></screen>
[9dfc02f]149
[81109e3]150 <para>Install the package:</para>
[73aedd1d]151
[0445a3d]152<screen><userinput remap="install">make install</userinput></screen>
[79f74200]153
[2914987b]154 <para>Now prepare the linker for the <quote>Re-adjusting</quote> phase in
155 the next chapter:</para>
156
[b3f1ebb3]157<screen arch="default"><userinput remap="adjust">make -C ld clean
[a11b40f]158make -C ld LIB_PATH=/usr/lib:/lib
[b3f1ebb3]159cp -v ld/ld-new /tools/bin</userinput></screen>
160
[fd48baa]161<screen arch="ml_all"><userinput remap="adjust">make -C ld clean
[b3f1ebb3]162make -C ld LIB_PATH=/usr/lib:/lib:/usr/lib32:/lib32:/usr/libx32:/libx32
[fd48baa]163cp -v ld/ld-new /tools/bin</userinput></screen>
164<screen arch="ml_32"><userinput remap="adjust">make -C ld clean
165make -C ld LIB_PATH=/usr/lib:/lib:/usr/lib32:/lib32
166cp -v ld/ld-new /tools/bin</userinput></screen>
167<screen arch="ml_x32"><userinput remap="adjust">make -C ld clean
168make -C ld LIB_PATH=/usr/lib:/lib:/usr/libx32:/libx32
[2914987b]169cp -v ld/ld-new /tools/bin</userinput></screen>
170
[4e82d47]171 <variablelist>
172 <title>The meaning of the make parameters:</title>
173
174 <varlistentry>
175 <term><parameter>-C ld clean</parameter></term>
176 <listitem>
177 <para>This tells the make program to remove all compiled
178 files in the <filename class="directory">ld</filename>
179 subdirectory.</para>
180 </listitem>
181 </varlistentry>
182
183 <varlistentry>
184 <term><parameter>-C ld LIB_PATH=/usr/lib:/lib</parameter></term>
185 <listitem>
186 <para>This option rebuilds everything in the <filename
187 class="directory">ld</filename> subdirectory. Specifying the
188 <envar>LIB_PATH</envar> Makefile variable on the command line
189 allows us to override the default value of the temporary tools
190 and point it to the proper final path. The value of this variable
191 specifies the linker's default library search path. This
192 preparation is used in the next chapter.</para>
193 </listitem>
194 </varlistentry>
195
196 </variablelist>
197
[81109e3]198 </sect2>
[73aedd1d]199
[81109e3]200 <sect2 role="content">
201 <title/>
[5888299]202
[81109e3]203 <para>Details on this package are located in
204 <xref linkend="contents-binutils" role="."/></para>
[81fd230]205
[81109e3]206 </sect2>
[81fd230]207
[81109e3]208</sect1>
Note: See TracBrowser for help on using the repository browser.