source: chapter05/gcc-pass2.xml@ 6bff916

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 6bff916 was 6bff916, checked in by Matthew Burgess <matthew@…>, 19 years ago

Fix a couple of typos

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

  • Property mode set to 100644
File size: 8.9 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-gcc-pass2" role="wrap">
9<title>GCC-&gcc-version; - Pass 2</title>
10<?dbhtml filename="gcc-pass2.html"?>
11
12<indexterm zone="ch-tools-gcc-pass2">
13<primary sortas="a-GCC">GCC</primary>
14<secondary>tools, pass 2</secondary></indexterm>
15
16<sect2 role="package"><title/>
17
18<segmentedlist>
19<segtitle>&buildtime;</segtitle>
20<segtitle>&diskspace;</segtitle>
21<seglistitem><seg>11.0 SBU</seg><seg>292 MB</seg></seglistitem>
22</segmentedlist>
23
24<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="../chapter06/gcc.xml" xpointer="xpointer(/sect1/sect2[1]/segmentedlist[2])"/>
25
26</sect2>
27
28<sect2 role="installation">
29<title>Re-installation of GCC</title>
30
31<para>This package is known to have issues when its default
32optimization flags (including the <parameter>-march</parameter> and
33<parameter>-mcpu</parameter> options) are changed. If any environment
34variables that override default optimizations have been defined, such
35as <envar>CFLAGS</envar> and <envar>CXXFLAGS</envar>,
36unset them when building GCC.</para>
37
38<para>The tools required to test GCC and Binutils&mdash;Tcl, Expect
39and DejaGNU&mdash;are installed now. GCC and Binutils can now be
40rebuilt, linking them against the new Glibc and testing them properly
41(if running the test suites in this chapter). Please note that these
42test suites are highly dependent on properly functioning PTYs which
43are provided by the host. PTYs are most commonly implemented via the
44<systemitem class="filesystem">devpts</systemitem> file system. Check
45to see if the host system is set up correctly in this regard by
46performing a quick test:</para>
47
48<screen><userinput>expect -c "spawn ls"</userinput></screen>
49
50<para>The response might be:</para>
51
52<screen><computeroutput>The system has no more ptys.
53Ask your system administrator to create more.</computeroutput></screen>
54
55<para>If the above message is received, the host does not have its PTYs set up
56properly. In this case, there is no point in running the test suites for GCC and
57Binutils until this issue is resolved. Please consult the LFS FAQ at <ulink
58url="&lfs-root;/lfs/faq.html#no-ptys"/> for more information on how to get PTYs
59working.</para>
60
61<para>As previously explained in <xref linkend="ch-tools-adjusting"/>, under
62normal circumstances the GCC <command>fixincludes</command> script is run in
63order to fix potentially broken header files. As GCC-&gcc-version; and
64Glibc-&glibc-version; have already been installed at this point, and their
65respective header files are known to not require fixing, the
66<command>fixincludes</command> script is not required. As mentioned previously,
67the script may in fact pollute the build environment by installing fixed headers
68from the host system into GCC's private include directory. The running of the
69<command>fixincludes</command> script can be suppressed by issuing the following
70commands:</para>
71
72<screen><userinput>cp -v gcc/Makefile.in{,.orig} &amp;&amp;
73sed 's@\./fixinc\.sh@-c true@' gcc/Makefile.in.orig &gt; gcc/Makefile.in</userinput></screen>
74
75<para>The bootstrap build performed in <xref linkend="ch-tools-gcc-pass1"/>
76built GCC with the <option>-fomit-frame-pointer</option> compiler flag.
77Non-bootstrap builds omit this flag by default, so apply the following
78<command>sed</command> to use it in order to ensure consistent compiler builds.
79</para>
80
81<screen><userinput>cp -v gcc/Makefile.in{,.tmp} &amp;&amp;
82sed 's/^XCFLAGS =$/&amp; -fomit-frame-pointer/' gcc/Makefile.in.tmp \
83 &gt; gcc/Makefile.in</userinput></screen>
84
85<para>Apply the following patch to change the location of GCC's default dynamic
86linker (typically <filename class="libraryfile">ld-linux.so.2</filename>):</para>
87
88<screen><userinput>patch -Np1 -i ../&gcc-specs-patch;</userinput></screen>
89
90<para>The above patch also removes
91<filename class="directory">/usr/include</filename> from GCC's include search
92path. Patching now rather than adjusting the specs file after installation
93ensures that the new dynamic linker is used during the actual build of GCC. That
94is, all of the binaries created during the build will link against the new
95Glibc.</para>
96
97<important><para>The above patch is critical in ensuring a
98successful overall build. Do not forget to apply
99it.</para></important>
100
101<para>Create a separate build directory again:</para>
102
103<screen><userinput>mkdir -v ../gcc-build
104cd ../gcc-build</userinput></screen>
105
106<para>Before starting to build GCC, remember to unset any environment
107variables that override the default optimization flags.</para>
108
109<para>Now prepare GCC for compilation:</para>
110
111<screen><userinput>../gcc-&gcc-version;/configure --prefix=/tools \
112 --libexecdir=/tools/lib --with-local-prefix=/tools \
113 --enable-clocale=gnu --enable-shared \
114 --enable-threads=posix --enable-__cxa_atexit \
115 --enable-languages=c,c++ --disable-libstdcxx-pch</userinput></screen>
116
117<para>The meaning of the new configure options:</para>
118
119<variablelist>
120<varlistentry>
121<term><parameter>--enable-clocale=gnu</parameter></term>
122<listitem><para>This option ensures the correct locale model is
123selected for the C++ libraries under all circumstances. If the
124configure script finds the <emphasis>de_DE</emphasis> locale installed, it will select the
125correct gnu locale model. However, if the <emphasis>de_DE</emphasis> locale is not
126installed, there is the risk of building Application Binary Interface
127(ABI)-incompatible C++ libraries because the incorrect generic locale
128model may be selected.</para></listitem>
129</varlistentry>
130
131<varlistentry>
132<term><parameter>--enable-threads=posix</parameter></term>
133<listitem><para>This enables C++ exception handling for multi-threaded
134code.</para></listitem>
135</varlistentry>
136
137<varlistentry>
138<term><parameter>--enable-__cxa_atexit</parameter></term>
139<listitem><para>This option allows use of
140<emphasis>__cxa_atexit</emphasis>, rather than
141<emphasis>atexit</emphasis>, to register C++ destructors for local
142statics and global objects. This option is essential for fully
143standards-compliant handling of destructors. It also affects the C++
144ABI, and therefore results in C++ shared libraries and C++ programs
145that are interoperable with other Linux
146distributions.</para></listitem>
147</varlistentry>
148
149<varlistentry>
150<term><parameter>--enable-languages=c,c++</parameter></term>
151<listitem><para>This option
152ensures that both the C and C++ compilers are built.</para></listitem>
153</varlistentry>
154
155<varlistentry>
156<term><parameter>--disable-libstdcxx-pch</parameter></term>
157<listitem><para>Do not build the pre-compiled header (PCH) for
158<filename class="libraryfile">libstdc++</filename>. It takes up a lot of space,
159and we have no use for it.</para></listitem>
160</varlistentry>
161</variablelist>
162
163<para>Compile the package:</para>
164
165<screen><userinput>make</userinput></screen>
166
167<para>There is no need to use the <parameter>bootstrap</parameter>
168target now because the compiler being used to compile this GCC was
169built from the exact same version of the GCC sources used
170earlier.</para>
171
172<para>Compilation is now complete. As previously mentioned, running
173the test suites for the temporary tools compiled in this chapter is
174not mandatory. To run the GCC test suite anyway, use the following
175command:</para>
176
177<screen><userinput>make -k check</userinput></screen>
178
179<para>The <parameter>-k</parameter> flag is used to make the test suite run
180through to completion and not stop at the first failure. The GCC test
181suite is very comprehensive and is almost guaranteed to generate a few
182failures. To receive a summary of the test suite results, run:</para>
183
184<screen><userinput>../gcc-&gcc-version;/contrib/test_summary</userinput></screen>
185
186<para>For only the summaries, pipe the output through
187<userinput>grep -A7 Summ</userinput>.</para>
188
189<para>Results can be compared with those located at <ulink
190url="&test-results;"/>.</para>
191
192<para>A few unexpected failures cannot always be avoided. The GCC developers are
193usually aware of these issues, but have not resolved them yet. In particular,
194the <filename class="libraryfile">libmudflap</filename> tests are known be
195particularly problematic as a result of a bug in GCC (<ulink
196url="http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20003"/>). Unless the test
197results are vastly different from those at the above URL, it is safe to
198continue.</para>
199
200<para>Install the package:</para>
201
202<screen><userinput>make install</userinput></screen>
203
204<note><para>At this point it is strongly recommended to repeat the
205sanity check we performed earlier in this chapter. Refer back to <xref
206linkend="ch-tools-adjusting" role=","/> and repeat the test compilation. If
207the result is wrong, the most likely reason is that the GCC Specs
208patch was not properly applied.</para></note>
209
210</sect2>
211
212<sect2 role="content"><title/>
213<para>Details on this package are located in <xref
214linkend="contents-gcc" role="."/></para>
215</sect2>
216
217</sect1>
218
Note: See TracBrowser for help on using the repository browser.