source: chapter05/binutils-pass1.xml@ faf3398

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.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 faf3398 was af133c3, checked in by Jeremy Utley <jeremy@…>, 20 years ago

Added new binutils fix_strip patch taken from upstream

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

  • Property mode set to 100644
File size: 6.0 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 current version of Binutils in use has a bug that causes strip to
41remove necessary information from certain library files. This patch fixes
42the problem:</para>
43
44<screen><userinput>patch -Np1 -i ../binutils-&binutils-version;-fix_strip-1.patch</userinput></screen>
45
46<para>The Binutils documentation recommends building Binutils outside of the
47source directory in a dedicated build directory:</para>
48
49<screen><userinput>mkdir ../binutils-build
50cd ../binutils-build</userinput></screen>
51
52<note><para>If you want the SBU values listed in the rest of the book to be of
53any use, you will have to measure the time it takes to build this package --
54from the configuration up to and including the first install. To achieve this
55easily, you could wrap the four commands in a <command>time</command> command
56like this: <userinput>time { ./configure ... &amp;&amp; ... &amp;&amp; ...
57&amp;&amp; make install; }</userinput>.</para></note>
58
59<para>Now prepare Binutils for compilation:</para>
60
61<screen><userinput>../binutils-&binutils-version;/configure --prefix=/tools --disable-nls</userinput></screen>
62
63<para>The meaning of the configure options:</para>
64
65<variablelist>
66<varlistentry>
67<term><parameter>--prefix=/tools</parameter></term>
68<listitem><para>This tells the configure script to prepare to install the Binutils
69programs in the <filename class="directory">/tools</filename> directory.</para></listitem>
70</varlistentry>
71
72<varlistentry>
73<term><parameter>--disable-nls</parameter></term>
74<listitem><para>This disables internationalization (a word often shortened to
75i18n). We don't need this for our static programs and <emphasis>nls</emphasis>
76often causes problems when linking statically.</para></listitem>
77</varlistentry>
78</variablelist>
79
80<para>Continue with compiling the package:</para>
81
82<screen><userinput>make configure-host
83make LDFLAGS="-all-static"</userinput></screen>
84
85<para>The meaning of the make parameters:</para>
86
87<variablelist>
88<varlistentry>
89<term><parameter>configure-host</parameter></term>
90<listitem><para>This forces all the subdirectories to be configured immediately.
91A statically linked build will fail without it. We therefore use this option to work
92around the problem.</para></listitem>
93</varlistentry>
94
95<varlistentry>
96<term><parameter>LDFLAGS="-all-static"</parameter></term>
97<listitem><para>This tells the linker that all the Binutils programs should be
98linked statically. However, strictly speaking, <parameter>"-all-static"</parameter>
99is passed to the <command>libtool</command> program, which then passes
100<parameter>"-static"</parameter> to the linker.</para></listitem>
101</varlistentry>
102</variablelist>
103
104<para>Compilation is complete. Normally we would now run the test suite, but
105at this early stage the test suite framework (Tcl, Expect and DejaGNU) is not
106yet in place. And there would be little point in running the tests anyhow,
107since the programs from this first pass will soon be replaced by those from the
108second.</para>
109
110<para>Now install the package:</para>
111
112<screen><userinput>make install</userinput></screen>
113
114<para>Now prepare the linker for the <quote>Adjusting</quote> phase later on:</para>
115
116<screen><userinput>make -C ld clean
117make -C ld LDFLAGS="-all-static" LIB_PATH=/tools/lib</userinput></screen>
118
119<para>The meaning of the make parameters:</para>
120
121<variablelist>
122<varlistentry>
123<term><parameter>-C ld clean</parameter></term>
124<listitem><para>This tells the make program to remove all the compiled files
125in the <filename class="directory">ld</filename> subdirectory.</para></listitem>
126</varlistentry>
127
128<varlistentry>
129<term><parameter>-C ld LDFLAGS="-all-static"
130LIB_PATH=/tools/lib</parameter></term>
131<listitem><para>This option rebuilds everything in the
132<filename class="directory">ld</filename> subdirectory. Specifying the LIB_PATH
133makefile variable on the command line allows us to override the default value
134and have it point to our temporary tools location. The value of this variable
135specifies the linker's default library search path. You will see how this
136preparation is used later on in the chapter.</para></listitem>
137</varlistentry>
138</variablelist>
139
140
141<warning><para><emphasis>Do not yet remove</emphasis> the Binutils build and
142source directories. You will need them again in their current state a bit
143further on in this chapter.</para></warning>
144
145
146</sect2>
147
148<sect2 role="content"><title/>
149<para>The details on this package are found in <xref linkend="contents-binutils"/>.</para>
150</sect2>
151
152</sect1>
Note: See TracBrowser for help on using the repository browser.