source: chapter05/binutils-pass1.xml@ 673b0d8

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 v5_1 v5_1_1 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 673b0d8 was 673b0d8, checked in by Matthew Burgess <matthew@…>, 20 years ago
  • Merged newxml into HEAD

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

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