source: chapter05/gcc-pass2.xml@ e75f916

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 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 e75f916 was 8aad4385, checked in by Matthew Burgess <matthew@…>, 13 years ago

Upgrade to GCC-4.6.0. Fixes #2847.

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

  • Property mode set to 100644
File size: 12.3 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
[b06ca36]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[673b0d8]4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
[1f7ca93]7
[9652249]8<sect1 id="ch-tools-gcc-pass2" role="wrap">
[1f7ca93]9 <?dbhtml filename="gcc-pass2.html"?>
10
[e747759]11 <sect1info condition="script">
12 <productname>gcc</productname>
13 <productnumber>&gcc-version;</productnumber>
14 <address>&gcc-url;</address>
15 </sect1info>
16
[1f7ca93]17 <title>GCC-&gcc-version; - Pass 2</title>
18
19 <indexterm zone="ch-tools-gcc-pass2">
20 <primary sortas="a-GCC">GCC</primary>
21 <secondary>tools, pass 2</secondary>
22 </indexterm>
23
24 <sect2 role="package">
25 <title/>
[bc82645e]26
[d9441360]27 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[1f7ca93]28 href="../chapter06/gcc.xml"
29 xpointer="xpointer(/sect1/sect2[1]/para[1])"/>
[81fd230]30
[1f7ca93]31 <segmentedlist>
32 <segtitle>&buildtime;</segtitle>
33 <segtitle>&diskspace;</segtitle>
[73aedd1d]34
[1f7ca93]35 <seglistitem>
[e4a5635]36 <seg>&gcc-ch5p2-sbu;</seg>
37 <seg>&gcc-ch5p2-du;</seg>
[1f7ca93]38 </seglistitem>
39 </segmentedlist>
[73aedd1d]40
[1f7ca93]41 </sect2>
[9652249]42
[1f7ca93]43 <sect2 role="installation">
[4e82d47]44 <title>Installation of GCC</title>
[73aedd1d]45
[4e82d47]46 <para>Versions of GCC later than 4.3 will treat this build as if
47 it were a relocated compiler and disallow searching for startfiles in
48 the location specified by <parameter>--prefix</parameter>. Since this
49 will not be a relocated compiler, and the startfiles in
50 <filename class="directory">/tools</filename> are crucial to building
51 a working compiler linked to the libs in <filename class="directory">/tools</filename>,
52 apply the following patch which partially reverts GCC to its old behavior:</para>
[73aedd1d]53
[4e82d47]54<screen><userinput remap="pre">patch -Np1 -i ../&gcc-startfiles-patch;</userinput></screen>
[73aedd1d]55
[4e82d47]56 <para>Under normal circumstances the GCC <command>fixincludes</command> script
[1f7ca93]57 is run in order to fix potentially broken header files. As GCC-&gcc-version;
58 and Glibc-&glibc-version; have already been installed at this point, and
59 their respective header files are known to not require fixing, the
[550f9f4]60 <command>fixincludes</command> script is not required. In fact, running
61 this script may actually pollute the build environment by
[1f7ca93]62 installing fixed headers from the host system into GCC's private include
63 directory. The running of the <command>fixincludes</command> script can
64 be suppressed by issuing the following commands:</para>
[2e02c35]65
[0445a3d]66<screen><userinput remap="pre">cp -v gcc/Makefile.in{,.orig}
[27ced84]67sed 's@\./fixinc\.sh@-c true@' gcc/Makefile.in.orig &gt; gcc/Makefile.in</userinput></screen>
[2e02c35]68
[07312f6]69 <para>For x86 machines, a bootstrap build of GCC uses the
70 <option>-fomit-frame-pointer</option> compiler flag. Non-bootstrap builds
71 omit this flag by default, and the goal should be to produce a compiler
72 that is exactly the same as if it were bootstrapped. Apply the following
73 <command>sed</command> command to force the build to use the flag:</para>
[2e02c35]74
[0445a3d]75<screen><userinput remap="pre">cp -v gcc/Makefile.in{,.tmp}
[d35b7f3]76sed 's/^T_CFLAGS =$/&amp; -fomit-frame-pointer/' gcc/Makefile.in.tmp \
[1f7ca93]77 &gt; gcc/Makefile.in</userinput></screen>
[2e02c35]78
[b0a4c9a]79 <para>The following command will change the location of GCC's default
[4e82d47]80 dynamic linker to use the one installed in
[b0a4c9a]81 <filename class="directory">/tools</filename>. It also removes <filename
[1f7ca93]82 class="directory">/usr/include</filename> from GCC's include search path.
[b0a4c9a]83 Doing this now rather than adjusting the specs file after installation
[1f7ca93]84 ensures that the new dynamic linker is used during the actual build of
85 GCC. That is, all of the binaries created during the build will link
[b0a4c9a]86 against the new Glibc. Issue:</para>
87
[6e88633]88<screen><userinput remap="pre">for file in \
89 $(find gcc/config -name linux64.h -o -name linux.h -o -name sysv4.h)
[b0a4c9a]90do
91 cp -uv $file{,.orig}
92 sed -e 's@/lib\(64\)\?\(32\)\?/ld@/tools&amp;@g' \
93 -e 's@/usr@/tools@g' $file.orig &gt; $file
[4e82d47]94 echo '
[b0a4c9a]95#undef STANDARD_INCLUDE_DIR
[4e82d47]96#define STANDARD_INCLUDE_DIR 0
97#define STANDARD_STARTFILE_PREFIX_1 ""
98#define STANDARD_STARTFILE_PREFIX_2 ""' &gt;&gt; $file
[b0a4c9a]99 touch $file.orig
100done</userinput></screen>
101
102 <para>In case the above seems hard to follow, let's break it down a bit.
[5f7456b]103 First we find all the files under the
104 <filename class="directory">gcc/config</filename> directory that are named
[6e88633]105 either <filename>linux.h</filename>, <filename>linux64.h</filename> or
106 <filename>sysv4.h</filename>.
[b0a4c9a]107 For each file found, we copy it to a file of the same name but with an added
108 suffix of <quote>.orig</quote>. Then the first sed expression prepends
109 <quote>/tools</quote> to every instance of <quote>/lib/ld</quote>,
110 <quote>/lib64/ld</quote> or <quote>/lib32/ld</quote>, while the second one
111 replaces hard-coded instances of <quote>/usr</quote>. Then we add our define
[4e82d47]112 statements which alter the include search path and the default startfile prefix
113 to the end of the file.
114 Finally, we use <command>touch</command> to update the timestamp on the copied files.
[b0a4c9a]115 When used in conjunction with <command>cp -u</command>, this prevents unexpected
[5f7456b]116 changes to the original files in case the commands are inadvertently run twice.
[b0a4c9a]117 </para>
[81fd230]118
[55fa5a3]119 <para>On x86_64, unsetting the multilib spec for GCC ensures that it
[6e88633]120 won't attempt to link against libraries on the host:</para>
121
[4e82d47]122<screen><userinput remap="pre">case $(uname -m) in
123 x86_64)
124 for file in $(find gcc/config -name t-linux64) ; do \
125 cp -v $file{,.orig}
126 sed '/MULTILIB_OSDIRNAMES/d' $file.orig &gt; $file
127 done
128 ;;
129esac</userinput></screen>
[6e88633]130
[4916842]131 <para>As in the first build of GCC it requires the GMP, MPFR and MPC
132 packages. Unpack the tarballs and move them into the required directory
133 names:</para>
[c49647b1]134
135<screen><userinput remap="pre">tar -jxf ../mpfr-&mpfr-version;.tar.bz2
[e311865]136mv -v mpfr-&mpfr-version; mpfr
[c49647b1]137tar -jxf ../gmp-&gmp-version;.tar.bz2
[4916842]138mv -v gmp-&gmp-version; gmp
139tar -zxf ../mpc-&mpc-version;.tar.gz
140mv -v mpc-&mpc-version; mpc</userinput></screen>
[c49647b1]141
[1f7ca93]142 <para>Create a separate build directory again:</para>
[73aedd1d]143
[0445a3d]144<screen><userinput remap="pre">mkdir -v ../gcc-build
[73aedd1d]145cd ../gcc-build</userinput></screen>
146
[1f7ca93]147 <para>Before starting to build GCC, remember to unset any environment
148 variables that override the default optimization flags.</para>
[81fd230]149
[1f7ca93]150 <para>Now prepare GCC for compilation:</para>
[73aedd1d]151
[4e82d47]152<screen><userinput remap="configure">CC="$LFS_TGT-gcc -B/tools/lib/" \
153 AR=$LFS_TGT-ar RANLIB=$LFS_TGT-ranlib \
154 ../gcc-&gcc-version;/configure --prefix=/tools \
[f684ec6c]155 --with-local-prefix=/tools --enable-clocale=gnu \
156 --enable-shared --enable-threads=posix \
157 --enable-__cxa_atexit --enable-languages=c,c++ \
[6e88633]158 --disable-libstdcxx-pch --disable-multilib \
[bd7123b]159 --disable-bootstrap --disable-libgomp \
[6123afe]160 --without-ppl --without-cloog</userinput></screen>
[73aedd1d]161
[1f7ca93]162 <variablelist>
163 <title>The meaning of the new configure options:</title>
164
165 <varlistentry>
166 <term><parameter>--enable-clocale=gnu</parameter></term>
167 <listitem>
168 <para>This option ensures the correct locale model is selected
169 for the C++ libraries under all circumstances. If the configure
170 script finds the <emphasis>de_DE</emphasis> locale installed,
171 it will select the correct gnu locale model. However, if the
172 <emphasis>de_DE</emphasis> locale is not installed, there is the
173 risk of building Application Binary Interface (ABI)-incompatible
174 C++ libraries because the incorrect generic locale model may be
175 selected.</para>
176 </listitem>
177 </varlistentry>
178
179 <varlistentry>
180 <term><parameter>--enable-threads=posix</parameter></term>
181 <listitem>
182 <para>This enables C++ exception handling for multi-threaded code.</para>
183 </listitem>
184 </varlistentry>
185
186 <varlistentry>
187 <term><parameter>--enable-__cxa_atexit</parameter></term>
188 <listitem>
189 <para>This option allows use of <function>__cxa_atexit</function>,
190 rather than <function>atexit</function>, to register C++ destructors
191 for local statics and global objects. This option is essential for
192 fully standards-compliant handling of destructors. It also affects
193 the C++ ABI, and therefore results in C++ shared libraries and C++
194 programs that are interoperable with other Linux distributions.</para>
195 </listitem>
196 </varlistentry>
197
198 <varlistentry>
199 <term><parameter>--enable-languages=c,c++</parameter></term>
200 <listitem>
201 <para>This option ensures that both the C and C++ compilers are
202 built.</para>
203 </listitem>
204 </varlistentry>
205
206 <varlistentry>
207 <term><parameter>--disable-libstdcxx-pch</parameter></term>
208 <listitem>
209 <para>Do not build the pre-compiled header (PCH) for
210 <filename class="libraryfile">libstdc++</filename>. It takes up a
211 lot of space, and we have no use for it.</para>
212 </listitem>
213 </varlistentry>
214
[b0a4c9a]215 <varlistentry>
216 <term><parameter>--disable-bootstrap</parameter></term>
217 <listitem>
[fe6ca49]218 <para>For native builds of GCC, the default is to do a "bootstrap"
219 build. This does not just compile GCC, but compiles it several times.
220 It uses the programs compiled in a first round to compile itself a
[07312f6]221 second time, and then again a third time. The second and third
222 iterations are compared to make sure it can reproduce itself
223 flawlessly. This also implies that it was compiled correctly.
224 However, the LFS build method should provide a solid compiler
225 without the need to bootstrap each time.</para>
[b0a4c9a]226 </listitem>
227 </varlistentry>
228
[1f7ca93]229 </variablelist>
230
231 <para>Compile the package:</para>
[73aedd1d]232
[bd7123b]233<screen><userinput remap="make">make</userinput></screen>
[73aedd1d]234
[1f7ca93]235 <para>Install the package:</para>
[73aedd1d]236
[0445a3d]237<screen><userinput remap="install">make install</userinput></screen>
[73aedd1d]238
[4e82d47]239 <para>As a finishing touch, create a symlink. Many programs and scripts
240 run <command>cc</command> instead of <command>gcc</command>, which is
241 used to keep programs generic and therefore usable on all kinds of UNIX
242 systems where the GNU C compiler is not always installed. Running
243 <command>cc</command> leaves the system administrator free to decide
244 which C compiler to install:</para>
245
246<screen><userinput remap="install">ln -vs gcc /tools/bin/cc</userinput></screen>
247
248 <caution>
249 <para>At this point, it is imperative to stop and ensure that the basic
250 functions (compiling and linking) of the new toolchain are working as
251 expected. To perform a sanity check, run the following commands:</para>
252
253<screen><userinput>echo 'main(){}' &gt; dummy.c
254cc dummy.c
255readelf -l a.out | grep ': /tools'</userinput></screen>
256
257 <para>If everything is working correctly, there should be no errors,
258 and the output of the last command will be of the form:</para>
259
[dc96e56]260<screen><computeroutput>[Requesting program interpreter: /tools/lib/ld-linux.so.2]</computeroutput></screen>
[4e82d47]261
262 <para>Note that <filename class="directory">/tools/lib</filename>, or
263 <filename class="directory">/tools/lib64</filename> for 64-bit machines
264 appears as the prefix of the dynamic linker.</para>
265
266 <para>If the output is not shown as above or there was no output at all,
267 then something is wrong. Investigate and retrace the steps to find out
268 where the problem is and correct it. This issue must be resolved before
269 continuing on. First, perform the sanity check again, using
270 <command>gcc</command> instead of <command>cc</command>. If this works,
271 then the <filename class="symlink">/tools/bin/cc</filename> symlink is
272 missing. Install the symlink as per above.
273 Next, ensure that the <envar>PATH</envar> is correct. This
274 can be checked by running <command>echo $PATH</command> and verifying that
275 <filename class="directory">/tools/bin</filename> is at the head of the
276 list. If the <envar>PATH</envar> is wrong it could mean that you are not
277 logged in as user <systemitem class="username">lfs</systemitem> or that
278 something went wrong back in <xref linkend="ch-tools-settingenviron"
279 role="."/></para>
280
281 <para>Once all is well, clean up the test files:</para>
282
283<screen><userinput>rm -v dummy.c a.out</userinput></screen>
284
285 </caution>
[73aedd1d]286
[1f7ca93]287 </sect2>
[bc82645e]288
[1f7ca93]289 <sect2 role="content">
290 <title/>
[81fd230]291
[1f7ca93]292 <para>Details on this package are located in
293 <xref linkend="contents-gcc" role="."/></para>
[81fd230]294
[1f7ca93]295 </sect2>
296
297</sect1>
Note: See TracBrowser for help on using the repository browser.