source: chapter05/gcc-pass2.xml@ d38ac3a

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.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 d38ac3a was d38ac3a, checked in by Ken Moffat <ken@…>, 12 years ago

Fix issues from the merge of the jh branch.

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

  • Property mode set to 100644
File size: 11.2 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-tools-gcc-pass2" role="wrap">
9 <?dbhtml filename="gcc-pass2.html"?>
10
11 <sect1info condition="script">
12 <productname>gcc</productname>
13 <productnumber>&gcc-version;</productnumber>
14 <address>&gcc-url;</address>
15 </sect1info>
16
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/>
26
27 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
28 href="../chapter06/gcc.xml"
29 xpointer="xpointer(/sect1/sect2[1]/para[1])"/>
30
31 <segmentedlist>
32 <segtitle>&buildtime;</segtitle>
33 <segtitle>&diskspace;</segtitle>
34
35 <seglistitem>
36 <seg>&gcc-ch5p2-sbu;</seg>
37 <seg>&gcc-ch5p2-du;</seg>
38 </seglistitem>
39 </segmentedlist>
40
41 </sect2>
42
43 <sect2 role="installation">
44 <title>Installation of GCC</title>
45
46 <para>Our first build of GCC has installed a couple of internal system
47 headers. Normally one of them, <filename>limits.h</filename> will in turn
48 include the corresponding system <filename>limits.h</filename> header, in
49 this case, <filename>/tools/include/limits.h</filename>. However, at the
50 time of the first build of gcc <filename>/tools/include/limits.h</filename>
51 did not exist, so the internal header that GCC installed is a partial,
52 self-contained file and does not include the extended features of the
53 system header. This was adequate for building the temporary libc, but this
54 build of GCC now requires the full internal header. Create a full version
55 of the internal header using a command that is identical to what the GCC
56 build system does in normal circumstances:</para>
57
58<screen><userinput remap="pre">cat gcc/limitx.h gcc/glimits.h gcc/limity.h &gt; \
59 `dirname $($LFS_TGT-gcc -print-libgcc-file-name)`/include-fixed/limits.h</userinput></screen>
60
61 <para>Under normal circumstances the GCC <command>fixincludes</command> script
62 is run in order to fix potentially broken header files. As GCC-&gcc-version;
63 and Glibc-&glibc-version; have already been installed at this point, and
64 their respective header files are known to not require fixing, the
65 <command>fixincludes</command> script is not required. In fact, running
66 this script may actually pollute the build environment by
67 installing fixed headers from the host system into GCC's private include
68 directory. The running of the <command>fixincludes</command> script can
69 be suppressed by issuing the following commands:</para>
70
71<screen><userinput remap="pre">cp -v gcc/Makefile.in{,.orig}
72sed 's@\./fixinc\.sh@-c true@' gcc/Makefile.in.orig &gt; gcc/Makefile.in</userinput></screen>
73
74 <para>For x86 machines, a bootstrap build of GCC uses the
75 <option>-fomit-frame-pointer</option> compiler flag. Non-bootstrap builds
76 omit this flag by default, and the goal should be to produce a compiler
77 that is exactly the same as if it were bootstrapped. Apply the following
78 <command>sed</command> command to force the build to use the flag:</para>
79
80<screen><userinput remap="pre">cp -v gcc/Makefile.in{,.tmp}
81sed 's/^T_CFLAGS =$/&amp; -fomit-frame-pointer/' gcc/Makefile.in.tmp \
82 &gt; gcc/Makefile.in</userinput></screen>
83
84 <para>Once again, change the location of GCC's default dynamic linker to
85 use the one installed in <filename
86 class="directory">/tools</filename>.</para>
87
88<screen><userinput remap="pre">for file in \
89 $(find gcc/config -name linux64.h -o -name linux.h -o -name sysv4.h)
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
94 echo '
95#undef STANDARD_STARTFILE_PREFIX_1
96#undef STANDARD_STARTFILE_PREFIX_2
97#define STANDARD_STARTFILE_PREFIX_1 "/tools/lib/"
98#define STANDARD_STARTFILE_PREFIX_2 ""' &gt;&gt; $file
99 touch $file.orig
100done</userinput></screen>
101
102 <para>As in the first build of GCC it requires the GMP, MPFR and MPC
103 packages. Unpack the tarballs and move them into the required directory
104 names:</para>
105
106<screen><userinput remap="pre">tar -jxf ../mpfr-&mpfr-version;.tar.bz2
107mv -v mpfr-&mpfr-version; mpfr
108tar -Jxf ../gmp-&gmp-version;.tar.xz
109mv -v gmp-&gmp-version; gmp
110tar -zxf ../mpc-&mpc-version;.tar.gz
111mv -v mpc-&mpc-version; mpc</userinput></screen>
112
113 <para>Create a separate build directory again:</para>
114
115<screen><userinput remap="pre">mkdir -v ../gcc-build
116cd ../gcc-build</userinput></screen>
117
118 <para>Before starting to build GCC, remember to unset any environment
119 variables that override the default optimization flags.</para>
120
121 <para>Now prepare GCC for compilation:</para>
122
123<screen><userinput remap="configure">CC=$LFS_TGT-gcc \
124AR=$LFS_TGT-ar \
125RANLIB=$LFS_TGT-ranlib \
126../gcc-&gcc-version;/configure \
127 --prefix=/tools \
128 --with-local-prefix=/tools \
129 --with-native-system-header-dir=/tools/include \
130 --enable-clocale=gnu \
131 --enable-shared \
132 --enable-threads=posix \
133 --enable-__cxa_atexit \
134 --enable-languages=c,c++ \
135 --disable-libstdcxx-pch \
136 --disable-multilib \
137 --disable-bootstrap \
138 --disable-libgomp \
139 --with-mpfr-include=$(pwd)/../gcc-&gcc-version;/mpfr/src \
140 --with-mpfr-lib=$(pwd)/mpfr/src/.libs</userinput></screen>
141
142 <variablelist>
143 <title>The meaning of the new configure options:</title>
144
145 <varlistentry>
146 <term><parameter>--enable-clocale=gnu</parameter></term>
147 <listitem>
148 <para>This option ensures the correct locale model is selected
149 for the C++ libraries under all circumstances. If the configure
150 script finds the <emphasis>de_DE</emphasis> locale installed,
151 it will select the correct gnu locale model. However, if the
152 <emphasis>de_DE</emphasis> locale is not installed, there is the
153 risk of building Application Binary Interface (ABI)-incompatible
154 C++ libraries because the incorrect generic locale model may be
155 selected.</para>
156 </listitem>
157 </varlistentry>
158
159 <varlistentry>
160 <term><parameter>--enable-threads=posix</parameter></term>
161 <listitem>
162 <para>This enables C++ exception handling for multi-threaded code.</para>
163 </listitem>
164 </varlistentry>
165
166 <varlistentry>
167 <term><parameter>--enable-__cxa_atexit</parameter></term>
168 <listitem>
169 <para>This option allows use of <function>__cxa_atexit</function>,
170 rather than <function>atexit</function>, to register C++ destructors
171 for local statics and global objects. This option is essential for
172 fully standards-compliant handling of destructors. It also affects
173 the C++ ABI, and therefore results in C++ shared libraries and C++
174 programs that are interoperable with other Linux distributions.</para>
175 </listitem>
176 </varlistentry>
177
178 <varlistentry>
179 <term><parameter>--enable-languages=c,c++</parameter></term>
180 <listitem>
181 <para>This option ensures that both the C and C++ compilers are
182 built.</para>
183 </listitem>
184 </varlistentry>
185
186 <varlistentry>
187 <term><parameter>--disable-libstdcxx-pch</parameter></term>
188 <listitem>
189 <para>Do not build the pre-compiled header (PCH) for
190 <filename class="libraryfile">libstdc++</filename>. It takes up a
191 lot of space, and we have no use for it.</para>
192 </listitem>
193 </varlistentry>
194
195 <varlistentry>
196 <term><parameter>--disable-bootstrap</parameter></term>
197 <listitem>
198 <para>For native builds of GCC, the default is to do a "bootstrap"
199 build. This does not just compile GCC, but compiles it several times.
200 It uses the programs compiled in a first round to compile itself a
201 second time, and then again a third time. The second and third
202 iterations are compared to make sure it can reproduce itself
203 flawlessly. This also implies that it was compiled correctly.
204 However, the LFS build method should provide a solid compiler
205 without the need to bootstrap each time.</para>
206 </listitem>
207 </varlistentry>
208
209 </variablelist>
210
211 <para>Compile the package:</para>
212
213<screen><userinput remap="make">make</userinput></screen>
214
215 <para>Install the package:</para>
216
217<screen><userinput remap="install">make install</userinput></screen>
218
219 <para>As a finishing touch, create a symlink. Many programs and scripts
220 run <command>cc</command> instead of <command>gcc</command>, which is
221 used to keep programs generic and therefore usable on all kinds of UNIX
222 systems where the GNU C compiler is not always installed. Running
223 <command>cc</command> leaves the system administrator free to decide
224 which C compiler to install:</para>
225
226<screen><userinput remap="install">ln -vs gcc /tools/bin/cc</userinput></screen>
227
228 <caution>
229 <para>At this point, it is imperative to stop and ensure that the basic
230 functions (compiling and linking) of the new toolchain are working as
231 expected. To perform a sanity check, run the following commands:</para>
232
233<screen><userinput>echo 'main(){}' &gt; dummy.c
234cc dummy.c
235readelf -l a.out | grep ': /tools'</userinput></screen>
236
237 <para>If everything is working correctly, there should be no errors,
238 and the output of the last command will be of the form:</para>
239
240<screen><computeroutput>[Requesting program interpreter: /tools/lib/ld-linux.so.2]</computeroutput></screen>
241
242 <para>Note that <filename class="directory">/tools/lib</filename>, or
243 <filename class="directory">/tools/lib64</filename> for 64-bit machines
244 appears as the prefix of the dynamic linker.</para>
245
246 <para>If the output is not shown as above or there was no output at all,
247 then something is wrong. Investigate and retrace the steps to find out
248 where the problem is and correct it. This issue must be resolved before
249 continuing on. First, perform the sanity check again, using
250 <command>gcc</command> instead of <command>cc</command>. If this works,
251 then the <filename class="symlink">/tools/bin/cc</filename> symlink is
252 missing. Install the symlink as per above.
253 Next, ensure that the <envar>PATH</envar> is correct. This
254 can be checked by running <command>echo $PATH</command> and verifying that
255 <filename class="directory">/tools/bin</filename> is at the head of the
256 list. If the <envar>PATH</envar> is wrong it could mean that you are not
257 logged in as user <systemitem class="username">lfs</systemitem> or that
258 something went wrong back in <xref linkend="ch-tools-settingenviron"
259 role="."/></para>
260
261 <para>Once all is well, clean up the test files:</para>
262
263<screen><userinput>rm -v dummy.c a.out</userinput></screen>
264
265 </caution>
266
267 </sect2>
268
269 <sect2 role="content">
270 <title/>
271
272 <para>Details on this package are located in
273 <xref linkend="contents-gcc" role="."/></para>
274
275 </sect2>
276
277</sect1>
Note: See TracBrowser for help on using the repository browser.