source: chapter05/binutils-pass1.xml@ 2a698a6

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.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 2a698a6 was 9829329, checked in by Matthew Burgess <matthew@…>, 19 years ago

Remove optimization related warnings from the toolchain packages

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

  • Property mode set to 100644
File size: 4.5 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 <!ENTITY % patches-entities SYSTEM "../patches.ent">
5 %general-entities;
6 %patches-entities;
7]>
8<sect1 id="ch-tools-binutils-pass1" role="wrap">
9<title>Binutils-&binutils-version; - Pass 1</title>
10<?dbhtml filename="binutils-pass1.html"?>
11
12<indexterm zone="ch-tools-binutils-pass1">
13<primary sortas="a-Binutils">Binutils</primary>
14<secondary>tools, pass 1</secondary></indexterm>
15
16<sect2 role="package"><title/>
17<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="../chapter06/binutils.xml" xpointer="xpointer(/sect1/sect2[1]/para[1])"/>
18
19<segmentedlist>
20<segtitle>&buildtime;</segtitle>
21<segtitle>&diskspace;</segtitle>
22<seglistitem><seg>1.0 SBU</seg><seg>170 MB</seg></seglistitem>
23</segmentedlist>
24
25<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="../chapter06/binutils.xml" xpointer="xpointer(/sect1/sect2[1]/segmentedlist[2])"/>
26
27</sect2>
28
29<sect2 role="installation">
30<title>Installation of Binutils</title>
31
32<para>It is important that Binutils be the first package compiled
33because both Glibc and GCC perform various tests on the available
34linker and assembler to determine which of their own features to
35enable.</para>
36
37<para>The Binutils documentation recommends building Binutils outside of the
38source directory in a dedicated build directory:</para>
39
40<screen><userinput>mkdir -v ../binutils-build
41cd ../binutils-build</userinput></screen>
42
43<note><para>In order for the SBU values listed in the rest of the book
44to be of any use, measure the time it takes to build this package from
45the configuration, up to and including the first install. To achieve
46this easily, wrap the three commands in a <command>time</command>
47command like this: <userinput>time { ./configure ... &amp;&amp; make
48&amp;&amp; make install; }</userinput>.</para></note>
49
50<para>Now prepare Binutils for compilation:</para>
51
52<screen><userinput>../binutils-&binutils-version;/configure --prefix=/tools --disable-nls</userinput></screen>
53
54<para>The meaning of the configure options:</para>
55
56<variablelist>
57<varlistentry>
58<term><parameter>--prefix=/tools</parameter></term>
59<listitem><para>This tells the configure script to prepare to install the Binutils
60programs in the <filename class="directory">/tools</filename> directory.</para></listitem>
61</varlistentry>
62
63<varlistentry>
64<term><parameter>--disable-nls</parameter></term>
65<listitem><para>This disables internationalization as i18n is not needed for the
66temporary tools.</para></listitem>
67</varlistentry>
68</variablelist>
69
70<para>Continue with compiling the package:</para>
71
72<screen><userinput>make</userinput></screen>
73
74<para>Compilation is now complete. Ordinarily we would now run the
75test suite, but at this early stage the test suite framework (Tcl,
76Expect, and DejaGNU) is not yet in place. The benefits of running the
77tests at this point are minimal since the programs from this
78first pass will soon be replaced by those from the second.</para>
79
80<para>Install the package:</para>
81
82<screen><userinput>make install</userinput></screen>
83
84<para>Next, prepare the linker for the <quote>Adjusting</quote> phase
85later on:</para>
86
87<screen><userinput>make -C ld clean
88make -C ld LIB_PATH=/tools/lib</userinput></screen>
89
90<para>The meaning of the make parameters:</para>
91
92<variablelist>
93<varlistentry>
94<term><parameter>-C ld clean</parameter></term>
95<listitem><para>This tells the make program to remove all compiled
96files in the <filename class="directory">ld</filename>
97subdirectory.</para></listitem>
98</varlistentry>
99
100<varlistentry>
101<term><parameter>-C ld LIB_PATH=/tools/lib</parameter></term>
102<listitem><para>This option rebuilds everything in the
103<filename class="directory">ld</filename> subdirectory. Specifying
104the <envar>LIB_PATH</envar> Makefile variable on the command
105line allows us to override the default value
106and point it to the temporary tools location. The value of this variable
107specifies the linker's default library search path. This preparation
108is used later in the chapter.</para></listitem>
109</varlistentry>
110</variablelist>
111
112<warning><para><emphasis>Do not</emphasis> remove the Binutils
113build and source directories yet. These will be needed again in their
114current state later in this chapter.</para></warning>
115
116</sect2>
117
118<sect2 role="content"><title/>
119<para>Details on this package are located in <xref
120linkend="contents-binutils" role="."/></para>
121</sect2>
122
123</sect1>
124
Note: See TracBrowser for help on using the repository browser.