source: chapter05/gcc-pass2.xml@ 32a531e

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 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 32a531e was 32a531e, checked in by Zack Winkles <winkie@…>, 20 years ago

Don't build the libstdc++ in Chapter 5

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

  • Property mode set to 100644
File size: 7.8 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-gcc-pass2">
7<title>GCC-&gcc-version; - Pass 2</title>
8<?dbhtml filename="gcc-pass2.html"?>
9
10<indexterm zone="ch-tools-gcc-pass2">
11<primary sortas="a-GCC">GCC</primary>
12<secondary>tools, pass 2</secondary></indexterm>
13
14<screen>&buildtime; 11.0 SBU
15&diskspace; 274 MB</screen>
16
17
18<sect2>
19<title>Re-installation of GCC</title>
20
21<para>The tools required to test GCC and Binutils are installed now: Tcl,
22Expect and DejaGnu. Therefore we can now rebuild GCC and Binutils, linking
23them against the new Glibc, and test them properly (if running the test suites
24in this chapter). One thing to note, however, is that these test suites are
25highly dependent on properly functioning pseudo terminals (PTYs) which are
26provided by your host. These days, PTYs are most commonly implemented via the
27<emphasis>devpts</emphasis> file system. You can quickly check if your host
28system is set up correctly in this regard by performing a simple test:</para>
29
30<screen><userinput>expect -c "spawn ls"</userinput></screen>
31
32<para>The response might be:</para>
33
34<blockquote><screen>The system has no more ptys. Ask your system administrator to create more.</screen></blockquote>
35
36<para>If you receive the above message, your host doesn't have its PTYs set up
37properly. In this case there is no point in running the test suites for GCC
38and Binutils until you are able to resolve the issue. You can consult the LFS
39Wiki at <ulink url="&wiki-root;"/> for more information on how to get PTYs
40working.</para>
41
42<para>This time we will build both the C and the C++ compilers, so you'll have
43to unpack both the core and the g++ tarballs (and testsuite too, if you want to
44run the tests). Unpacking them in your working directory, they will all unfold
45into a single <filename>gcc-&gcc-version;/</filename> subdirectory.</para>
46
47<para>First correct a problem and make an essential adjustment:</para>
48
49<screen><userinput>patch -Np1 -i ../gcc-&gcc-version;-no-fixincludes-1.patch
50patch -Np1 -i ../gcc-&gcc-version;-specs-1.patch</userinput></screen>
51
52<para>The first patch disables the GCC <quote>fixincludes</quote> script. We
53mentioned this briefly earlier, but a slightly more in-depth explanation of
54the fixincludes process is warranted here. Under normal circumstances, the GCC
55fixincludes script scans your system for header files that need to be fixed. It
56might find that some Glibc header files on your host system need to be fixed,
57fix them and put them in the GCC private include directory. Then, later on in
58<xref linkend="chapter-building-system"/>, after we've installed the newer
59Glibc, this private include directory would be searched before the system
60include directory, resulting in GCC finding the fixed headers from the host
61system, which would most likely not match the Glibc version actually used for
62the LFS system.</para>
63
64<para>The second patch changes GCC's default location of the dynamic linker
65(typically <filename>ld-linux.so.2</filename>). It also removes
66<filename class="directory">/usr/include</filename> from GCC's include search
67path. Patching now rather than adjusting the specs file after installation
68ensures that our new dynamic linker gets used during the actual build of GCC.
69That is, all the final (and temporary) binaries created during the build will
70link against the new Glibc.</para>
71
72<important><para>The above patches are <emphasis>critical</emphasis> in ensuring
73a successful overall build. Do not forget to apply them.</para></important>
74
75<para>Create a separate build directory again:</para>
76
77<screen><userinput>mkdir ../gcc-build
78cd ../gcc-build</userinput></screen>
79
80<para>Before starting to build GCC, remember to unset any environment
81variables that override the default optimization flags.</para>
82
83<para>Now prepare GCC for compilation:</para>
84
85<screen><userinput>../gcc-&gcc-version;/configure --prefix=/tools \
86 --libexecdir=/tools/lib --with-local-prefix=/tools \
87 --enable-clocale=gnu --enable-shared --enable-threads=posix \
88 --enable-__cxa_atexit --enable-languages=c,c++ \
89 --disable-libstdcxx-pch</userinput></screen>
90
91<para>The meaning of the new configure options:</para>
92
93<itemizedlist>
94<listitem><para><userinput>--enable-clocale=gnu</userinput>: This option
95ensures the correct locale model is selected for the C++ libraries under all
96circumstances. If the configure script finds the <emphasis>de_DE</emphasis>
97locale installed, it will select the correct <emphasis>gnu</emphasis> locale
98model. However, people who don't install the <emphasis>de_DE</emphasis> locale
99would run the risk of building ABI incompatible C++ libraries due to the wrong
100<emphasis>generic</emphasis> locale model being selected.</para></listitem>
101
102<listitem><para><userinput>--enable-threads=posix</userinput>: This enables
103C++ exception handling for multi-threaded code.</para></listitem>
104
105<listitem><para><userinput>--enable-__cxa_atexit</userinput>: This option
106allows use of __cxa_atexit, rather than atexit, to register C++ destructors for
107local statics and global objects and is essential for fully standards-compliant
108handling of destructors. It also affects the C++ ABI and therefore results in
109C++ shared libraries and C++ programs that are interoperable with other Linux
110distributions.</para></listitem>
111
112<listitem><para><userinput>--enable-languages=c,c++</userinput>: This option
113ensures that both the C and C++ compilers are built.</para></listitem>
114
115<listitem><para><userinput>--disable-libstdcxx-pch</userinput>: Don't build the
116PCH (pre-compiled header) for libstdc++. It takes up a ton of space, and we
117have no use for it.</para></listitem>
118</itemizedlist>
119
120<para>Compile the package:</para>
121
122<screen><userinput>make</userinput></screen>
123
124<para>There is no need to use the <emphasis>bootstrap</emphasis> target now,
125as the compiler we're using to compile this GCC was built from the exact same
126version of the GCC sources we used earlier.</para>
127
128<para>Compilation is now complete. As mentioned earlier, we don't recommend
129running the test suites for the temporary tools here in this chapter. If you
130still want to run the GCC test suite anyway, the following command will do
131so:</para>
132
133<screen><userinput>make -k check</userinput></screen>
134
135<para>The <emphasis>-k</emphasis> flag is used to make the test suite run
136through to completion and not stop at the first failure. The GCC test suite is
137very comprehensive and is almost guaranteed to generate a few failures. To get
138a summary of the test suite results, run this:</para>
139
140<screen><userinput>../gcc-&gcc-version;/contrib/test_summary</userinput></screen>
141
142<para>(For just the summaries, pipe the output through
143<userinput>grep -A7 Summ</userinput>.)</para>
144
145<para>You can compare your results to those posted to the gcc-testresults
146mailing list for similar configurations to your own. For an example of how
147current GCC-&gcc-version; should look on i686-pc-linux-gnu, see
148<ulink url="http://gcc.gnu.org/ml/gcc-testresults/2004-04/msg00414.html"/>.</para>
149
150<para>Having a few unexpected failures often cannot be avoided. The GCC
151developers are usually aware of these, but haven't yet gotten around to fixing
152them. In short, unless your results are vastly different from those at the above
153URL, it is safe to continue.</para>
154
155<para>And finally install the package:</para>
156
157<screen><userinput>make install</userinput></screen>
158
159<note><para>At this point it is strongly recommended to repeat the sanity check
160we performed earlier in this chapter. Refer back to
161<xref linkend="ch-tools-adjusting"/> and repeat the little test compilation. If
162the result is wrong, then most likely you forgot to apply the above mentioned
163GCC Specs patch.</para></note>
164
165</sect2>
166
167<sect2><title/>
168<para>The details on this package are found in <xref linkend="contents-gcc"/>.</para>
169</sect2>
170
171</sect1>
Note: See TracBrowser for help on using the repository browser.