source: chapter05/binutils-pass1.xml@ 8250be1

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.0 6.1 6.1.1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 8250be1 was cb983a8, checked in by Zack Winkles <winkie@…>, 20 years ago

Globally changed DejaGnu to DejaGNU

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

  • Property mode set to 100644
File size: 5.7 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<sect1 id="ch-tools-binutils-pass1" role="wrap">
7<title>Binutils-&binutils-version; - Pass 1</title>
8<?dbhtml filename="binutils-pass1.html"?>
9
10<indexterm zone="ch-tools-binutils-pass1">
11<primary sortas="a-Binutils">Binutils</primary>
12<secondary>tools, pass 1</secondary></indexterm>
13
14<sect2 role="package"><title/>
15<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="../chapter06/binutils.xml" xpointer="xpointer(/sect1/sect2[1]/para[1])"/>
16
17<segmentedlist>
18<segtitle>&buildtime;</segtitle>
19<segtitle>&diskspace;</segtitle>
20<seglistitem><seg>1.0 SBU</seg><seg>194 MB</seg></seglistitem>
21</segmentedlist>
22
23<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="../chapter06/binutils.xml" xpointer="xpointer(/sect1/sect2[1]/segmentedlist[2])"/>
24
25</sect2>
26
27<sect2 role="installation">
28<title>Installation of Binutils</title>
29
30<para>It is important that Binutils be the first package to get compiled,
31because both Glibc and GCC perform various tests on the available linker and
32assembler to determine which of their own features to enable.</para>
33
34<para>This package is known to behave badly when you change its default
35optimization flags (including the <parameter>-march</parameter> and
36<parameter>-mcpu</parameter> options). Therefore, if you have defined any
37environment variables that override default optimizations, such as CFLAGS and
38CXXFLAGS, we recommend un-setting them when building Binutils.</para>
39
40<para>The Binutils documentation recommends building Binutils outside of the
41source directory in a dedicated build directory:</para>
42
43<screen><userinput>mkdir ../binutils-build
44cd ../binutils-build</userinput></screen>
45
46<note><para>If you want the SBU values listed in the rest of the book to be of
47any use, you will have to measure the time it takes to build this package --
48from the configuration up to and including the first install. To achieve this
49easily, you could wrap the four commands in a <command>time</command> command
50like this: <userinput>time { ./configure ... &amp;&amp; ... &amp;&amp; ...
51&amp;&amp; make install; }</userinput>.</para></note>
52
53<para>Now prepare Binutils for compilation:</para>
54
55<screen><userinput>../binutils-&binutils-version;/configure --prefix=/tools --disable-nls</userinput></screen>
56
57<para>The meaning of the configure options:</para>
58
59<variablelist>
60<varlistentry>
61<term><parameter>--prefix=/tools</parameter></term>
62<listitem><para>This tells the configure script to prepare to install the Binutils
63programs in the <filename class="directory">/tools</filename> directory.</para></listitem>
64</varlistentry>
65
66<varlistentry>
67<term><parameter>--disable-nls</parameter></term>
68<listitem><para>This disables internationalization (a word often shortened to
69i18n). We don't need this for our static programs and <emphasis>nls</emphasis>
70often causes problems when linking statically.</para></listitem>
71</varlistentry>
72</variablelist>
73
74<para>Continue with compiling the package:</para>
75
76<screen><userinput>make configure-host
77make LDFLAGS="-all-static"</userinput></screen>
78
79<para>The meaning of the make parameters:</para>
80
81<variablelist>
82<varlistentry>
83<term><parameter>configure-host</parameter></term>
84<listitem><para>This forces all the subdirectories to be configured immediately.
85A statically linked build will fail without it. We therefore use this option to work
86around the problem.</para></listitem>
87</varlistentry>
88
89<varlistentry>
90<term><parameter>LDFLAGS="-all-static"</parameter></term>
91<listitem><para>This tells the linker that all the Binutils programs should be
92linked statically. However, strictly speaking, <parameter>"-all-static"</parameter>
93is passed to the <command>libtool</command> program, which then passes
94<parameter>"-static"</parameter> to the linker.</para></listitem>
95</varlistentry>
96</variablelist>
97
98<para>Compilation is complete. Normally we would now run the test suite, but
99at this early stage the test suite framework (Tcl, Expect and DejaGNU) is not
100yet in place. And there would be little point in running the tests anyhow,
101since the programs from this first pass will soon be replaced by those from the
102second.</para>
103
104<para>Now install the package:</para>
105
106<screen><userinput>make install</userinput></screen>
107
108<para>Now prepare the linker for the <quote>Adjusting</quote> phase later on:</para>
109
110<screen><userinput>make -C ld clean
111make -C ld LDFLAGS="-all-static" LIB_PATH=/tools/lib</userinput></screen>
112
113<para>The meaning of the make parameters:</para>
114
115<variablelist>
116<varlistentry>
117<term><parameter>-C ld clean</parameter></term>
118<listitem><para>This tells the make program to remove all the compiled files
119in the <filename class="directory">ld</filename> subdirectory.</para></listitem>
120</varlistentry>
121
122<varlistentry>
123<term><parameter>-C ld LDFLAGS="-all-static"
124LIB_PATH=/tools/lib</parameter></term>
125<listitem><para>This option rebuilds everything in the
126<filename class="directory">ld</filename> subdirectory. Specifying the LIB_PATH
127makefile variable on the command line allows us to override the default value
128and have it point to our temporary tools location. The value of this variable
129specifies the linker's default library search path. You will see how this
130preparation is used later on in the chapter.</para></listitem>
131</varlistentry>
132</variablelist>
133
134
135<warning><para><emphasis>Do not yet remove</emphasis> the Binutils build and
136source directories. You will need them again in their current state a bit
137further on in this chapter.</para></warning>
138
139
140</sect2>
141
142<sect2 role="content"><title/>
143<para>The details on this package are found in <xref linkend="contents-binutils"/>.</para>
144</sect2>
145
146</sect1>
Note: See TracBrowser for help on using the repository browser.