source: chapter05/binutils-pass1.xml@ b99a720

6.0
Last change on this file since b99a720 was 6e41459, checked in by Gerard Beekmans <gerard@…>, 20 years ago

Completed global edits for upcoming 6.0 release

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

  • Property mode set to 100644
File size: 5.6 KB
RevLine 
[673b0d8]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]>
[9652249]6<sect1 id="ch-tools-binutils-pass1" role="wrap">
[673b0d8]7<title>Binutils-&binutils-version; - Pass 1</title>
8<?dbhtml filename="binutils-pass1.html"?>
[bc82645e]9
[673b0d8]10<indexterm zone="ch-tools-binutils-pass1">
11<primary sortas="a-Binutils">Binutils</primary>
12<secondary>tools, pass 1</secondary></indexterm>
[bc82645e]13
[9652249]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])"/>
[673b0d8]16
[9652249]17<segmentedlist>
18<segtitle>&buildtime;</segtitle>
19<segtitle>&diskspace;</segtitle>
20<seglistitem><seg>1.0 SBU</seg><seg>194 MB</seg></seglistitem>
21</segmentedlist>
[673b0d8]22
[9652249]23<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="../chapter06/binutils.xml" xpointer="xpointer(/sect1/sect2[1]/segmentedlist[2])"/>
[73aedd1d]24
[9652249]25</sect2>
[73aedd1d]26
[9652249]27<sect2 role="installation">
[73aedd1d]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
[6e41459]34<para>This package is known to have issues when its default
[574b0ea]35optimization flags (including the <parameter>-march</parameter> and
[6e41459]36<parameter>-mcpu</parameter> options) are changed. Therefore, if any
37environment variables that override default optimizations have been
38defined, such as <emphasis>CFLAGS</emphasis> and
39<emphasis>CXXFLAGS</emphasis>, we recommend un-setting them when
40building Binutils.</para>
[73aedd1d]41
42<para>The Binutils documentation recommends building Binutils outside of the
43source directory in a dedicated build directory:</para>
44
45<screen><userinput>mkdir ../binutils-build
46cd ../binutils-build</userinput></screen>
47
[6e41459]48<note><para>In order for the SBU values listed in the rest of the book
49to be of any use, measure the time it takes to build this package from
50the configuration, up to and including the first install. To achieve
51this easily, wrap the four commands in a <command>time</command>
52command like this: <userinput>time { ./configure ... &amp;&amp; ...
53&amp;&amp; ... &amp;&amp; make install; }</userinput>.</para></note>
[73aedd1d]54
55<para>Now prepare Binutils for compilation:</para>
56
[673b0d8]57<screen><userinput>../binutils-&binutils-version;/configure --prefix=/tools --disable-nls</userinput></screen>
[73aedd1d]58
59<para>The meaning of the configure options:</para>
60
[9652249]61<variablelist>
62<varlistentry>
[574b0ea]63<term><parameter>--prefix=/tools</parameter></term>
[9652249]64<listitem><para>This tells the configure script to prepare to install the Binutils
[574b0ea]65programs in the <filename class="directory">/tools</filename> directory.</para></listitem>
[9652249]66</varlistentry>
67
68<varlistentry>
[574b0ea]69<term><parameter>--disable-nls</parameter></term>
[6e41459]70<listitem><para>This disables internationalization. This is not needed
71for the static programs, and nls can cause problems when linking
72statically.</para></listitem>
[9652249]73</varlistentry>
74</variablelist>
[73aedd1d]75
76<para>Continue with compiling the package:</para>
77
78<screen><userinput>make configure-host
79make LDFLAGS="-all-static"</userinput></screen>
80
[5763f675]81<para>The meaning of the make parameters:</para>
[73aedd1d]82
[9652249]83<variablelist>
84<varlistentry>
[574b0ea]85<term><parameter>configure-host</parameter></term>
[6e41459]86<listitem><para>This forces all subdirectories to be configured
87immediately. A statically-linked build will fail without it. Use this
88option to work around the problem:</para></listitem>
[9652249]89</varlistentry>
90
91<varlistentry>
[574b0ea]92<term><parameter>LDFLAGS="-all-static"</parameter></term>
[6e41459]93<listitem><para>This tells the linker that all Binutils programs
94should be linked statically. However, strictly speaking,
95<parameter>"-all-static"</parameter> is passed to the
96<command>libtool</command> program, which then passes
[574b0ea]97<parameter>"-static"</parameter> to the linker.</para></listitem>
[9652249]98</varlistentry>
99</variablelist>
[73aedd1d]100
[6e41459]101<para>Compilation is now complete. Ordinarily we would now run the
102test suite, but at this early stage the test suite framework (Tcl,
103Expect, and DejaGNU) is not yet in place. The benefits of running the
104tests at this point would be minimal since the programs from this
105first pass will soon be replaced by those from the second.</para>
[443cace]106
[6e41459]107<para>Install the package:</para>
[73aedd1d]108
109<screen><userinput>make install</userinput></screen>
110
[6e41459]111<para>Next, prepare the linker for the <quote>Adjusting</quote> phase
112later on:</para>
[73aedd1d]113
114<screen><userinput>make -C ld clean
115make -C ld LDFLAGS="-all-static" LIB_PATH=/tools/lib</userinput></screen>
116
[5763f675]117<para>The meaning of the make parameters:</para>
[73aedd1d]118
[9652249]119<variablelist>
120<varlistentry>
[574b0ea]121<term><parameter>-C ld clean</parameter></term>
[6e41459]122<listitem><para>This tells the make program to remove all compiled
123files in the <filename class="directory">ld</filename>
124subdirectory.</para></listitem>
[9652249]125</varlistentry>
126
127<varlistentry>
[574b0ea]128<term><parameter>-C ld LDFLAGS="-all-static"
129LIB_PATH=/tools/lib</parameter></term>
[9652249]130<listitem><para>This option rebuilds everything in the
[ede9b9b]131<filename class="directory">ld</filename> subdirectory. Specifying the LIB_PATH
[6e41459]132Makefile variable on the command line allows us to override the default value
133and point it to our temporary tools location. The value of this variable
134specifies the linker's default library search path. This preparation
135is used later in the chapter.</para></listitem>
[9652249]136</varlistentry>
137</variablelist>
[73aedd1d]138
[6e41459]139<warning><para><emphasis>Do not yet</emphasis> remove the Binutils
140build and source directories. These will be needed again in their
141current state later in this chapter.</para></warning>
[73aedd1d]142
143</sect2>
[bc82645e]144
[9652249]145<sect2 role="content"><title/>
[5888299]146<para>The details on this package are found in <xref linkend="contents-binutils"/>.</para>
[0868461]147</sect2>
[5888299]148
[bc82645e]149</sect1>
[6e41459]150
Note: See TracBrowser for help on using the repository browser.