source: chapter05/binutils-pass1.xml@ 4759793f

Last change on this file since 4759793f was 4759793f, checked in by Jeremy Huntwork <jhuntwork@…>, 17 years ago

Remove the -m64 sections from binutils and gcc pass 1. Tests show the 32-bit binaries produce the wanted 64-bit code.

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

  • Property mode set to 100644
File size: 5.6 KB
Line 
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
8<sect1 id="ch-tools-binutils-pass1" role="wrap">
9 <?dbhtml filename="binutils-pass1.html"?>
10
11 <title>Binutils-&binutils-version; - Pass 1</title>
12
13 <indexterm zone="ch-tools-binutils-pass1">
14 <primary sortas="a-Binutils">Binutils</primary>
15 <secondary>tools, pass 1</secondary>
16 </indexterm>
17
18 <sect2 role="package">
19 <title/>
20
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
25 <segmentedlist>
26 <segtitle>&buildtime;</segtitle>
27 <segtitle>&diskspace;</segtitle>
28
29 <seglistitem>
30 <seg>&binutils-ch5p1-sbu;</seg>
31 <seg>&binutils-ch5p1-du;</seg>
32 </seglistitem>
33 </segmentedlist>
34
35 </sect2>
36
37 <sect2 role="installation">
38 <title>Installation of Binutils</title>
39
40 <para>It is important that Binutils be the first package compiled
41 because both Glibc and GCC perform various tests on the available
42 linker and assembler to determine which of their own features to
43 enable.</para>
44
45 <para>The Binutils documentation recommends building Binutils outside of the
46 source directory in a dedicated build directory:</para>
47
48<screen><userinput>mkdir -v ../binutils-build
49cd ../binutils-build</userinput></screen>
50
51 <note>
52 <para>In order for the SBU values listed in the rest of the book
53 to be of any use, measure the time it takes to build this package from
54 the configuration, up to and including the first install. To achieve
55 this easily, wrap the three commands in a <command>time</command>
56 command like this: <userinput>time { ./configure ... &amp;&amp; make
57 &amp;&amp; make install; }</userinput>.</para>
58 </note>
59
60 <para>Now prepare Binutils for compilation:</para>
61
62<screen><userinput>CC="gcc -B/usr/bin/" ../binutils-&binutils-version;/configure \
63 --prefix=/tools --disable-nls --disable-werror</userinput></screen>
64
65 <variablelist>
66 <title>The meaning of the configure options:</title>
67
68 <varlistentry>
69 <term><envar>CC="gcc -B/usr/bin/"</envar></term>
70 <listitem>
71 <para>This forces <command>gcc</command> to prefer the linker from
72 the host in <filename class="directory">/usr/bin</filename>. This
73 is necessary on some hosts where the new <command>ld</command>
74 built here is not compatible with the host's <command>gcc</command>.
75 </para>
76 </listitem>
77 </varlistentry>
78
79 <varlistentry>
80 <term><parameter>--prefix=/tools</parameter></term>
81 <listitem>
82 <para>This tells the configure script to prepare to install the
83 Binutils programs in the <filename class="directory">/tools</filename>
84 directory.</para>
85 </listitem>
86 </varlistentry>
87
88 <varlistentry>
89 <term><parameter>--disable-nls</parameter></term>
90 <listitem>
91 <para>This disables internationalization as i18n is not needed for the
92 temporary tools.</para>
93 </listitem>
94 </varlistentry>
95
96 <varlistentry>
97 <term><parameter>--disable-werror</parameter></term>
98 <listitem>
99 <para>This prevents the build from stopping in the event that there
100 are warnings from the host's compiler.</para>
101 </listitem>
102 </varlistentry>
103
104 </variablelist>
105
106 <para>Continue with compiling the package:</para>
107
108<screen><userinput>make</userinput></screen>
109
110 <para>Compilation is now complete. Ordinarily we would now run the
111 test suite, but at this early stage the test suite framework (Tcl,
112 Expect, and DejaGNU) is not yet in place. The benefits of running the
113 tests at this point are minimal since the programs from this
114 first pass will soon be replaced by those from the second.</para>
115
116 <para>Create a symlink to ensure the sanity of our toolchain:</para>
117
118<screen><userinput>mkdir -v /tools/lib
119ln -sv lib /tools/lib64</userinput></screen>
120
121 <para>Install the package:</para>
122
123<screen><userinput>make install</userinput></screen>
124
125 <para>Finally, prepare the linker for the <quote>Adjusting</quote> phase
126 later on:</para>
127
128<screen><userinput>make -C ld clean
129make -C ld LIB_PATH=/tools/lib
130cp -v ld/ld-new /tools/bin</userinput></screen>
131
132 <variablelist>
133 <title>The meaning of the make parameters:</title>
134
135 <varlistentry>
136 <term><parameter>-C ld clean</parameter></term>
137 <listitem>
138 <para>This tells the make program to remove all compiled
139 files in the <filename class="directory">ld</filename>
140 subdirectory.</para>
141 </listitem>
142 </varlistentry>
143
144 <varlistentry>
145 <term><parameter>-C ld LIB_PATH=/tools/lib</parameter></term>
146 <listitem>
147 <para>This option rebuilds everything in the <filename
148 class="directory">ld</filename> subdirectory. Specifying the
149 <envar>LIB_PATH</envar> Makefile variable on the command line
150 allows us to override the default value and point it to the
151 temporary tools location. The value of this variable specifies
152 the linker's default library search path. This preparation is
153 used later in the chapter.</para>
154 </listitem>
155 </varlistentry>
156
157 </variablelist>
158
159 </sect2>
160
161 <sect2 role="content">
162 <title/>
163
164 <para>Details on this package are located in
165 <xref linkend="contents-binutils" role="."/></para>
166
167 </sect2>
168
169</sect1>
Note: See TracBrowser for help on using the repository browser.