source: chapter05/gcc-pass2.xml@ ca17032

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 ca17032 was ca17032, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Including patches.ent from general.ent

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

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