source: chapter05/gcc-pass2.xml@ 875141e

6.1 6.1.1
Last change on this file since 875141e was 875141e, checked in by Manuel Canales Esparcia <manuel@…>, 19 years ago

Fixing beginpage tags. Fisrt round.

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

  • Property mode set to 100644
File size: 8.3 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>This package is known to have issues when its default
30optimization flags (including the <parameter>-march</parameter> and
31<parameter>-mcpu</parameter> options) are changed. If any environment
32variables that override default optimizations have been defined, such
33as <envar>CFLAGS</envar> and <envar>CXXFLAGS</envar>,
34unset them when building GCC.</para>
35
36<para>The tools required to test GCC and Binutils&mdash;Tcl, Expect
37and DejaGNU&mdash;are installed now. GCC and Binutils can now be
38rebuilt, linking them against the new Glibc and testing them properly
39(if running the test suites in this chapter). Please note that these
40test suites are highly dependent on properly functioning PTYs which
41are provided by the host. PTYs are most commonly implemented via the
42<systemitem class="filesystem">devpts</systemitem> file system. Check
43to see if the host system is set up correctly in this regard by
44performing a quick test:</para>
45
46<screen><userinput>expect -c "spawn ls"</userinput></screen>
47
48<para>The response might be:</para>
49
50<screen><computeroutput>The system has no more ptys.
51Ask your system administrator to create more.</computeroutput></screen>
52
53<para>If the above message is received, the host does not have its
54PTYs set up properly. In this case, there is no point in running the
55test suites for GCC and Binutils until this issue is resolved. Please
56consult the LFS FAQ at <ulink url="&faq-root;"/> for more
57information on how to get PTYs working.</para>
58
59<para>First correct a known problem and make an essential adjustment:</para>
60
61<screen><userinput>patch -Np1 -i ../gcc-&gcc-version;-no_fixincludes-1.patch
62patch -Np1 -i ../gcc-&gcc-version;-specs-2.patch</userinput></screen>
63
64<para>The first patch disables the GCC <command>fixincludes</command>
65script. This was briefly mentioned earlier, but a more in-depth
66explanation of the fixincludes process is warranted here. Under normal
67circumstances, the GCC <command>fixincludes</command> script scans the
68system for header files that need to be fixed. It might find that some
69Glibc header files on the host system need to be fixed, and will fix
70them and put them in the GCC private include directory. In <xref
71linkend="chapter-building-system"/>, after the newer Glibc has been
72installed, this private include directory will be searched before the
73system include directory. This may result in GCC finding the fixed
74headers from the host system, which most likely will not match the
75Glibc version used for the LFS system.</para>
76
77<para>The second patch changes GCC's default location of the dynamic
78linker (typically <filename class="libraryfile">ld-linux.so.2</filename>). It also removes
79<filename class="directory">/usr/include</filename> from GCC's include
80search path. Patching now rather than adjusting the specs file after
81installation ensures that the new dynamic linker is used during the
82actual build of GCC. That is, all of the final (and temporary)
83binaries created during the build will link against the new
84Glibc.</para>
85
86<beginpage/>
87
88<important><para>The above patches are critical in ensuring a
89successful overall build. Do not forget to apply
90them.</para></important>
91
92<para>Create a separate build directory again:</para>
93
94<screen><userinput>mkdir ../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 --libexecdir=/tools/lib --with-local-prefix=/tools \
104 --enable-clocale=gnu --enable-shared \
105 --enable-threads=posix --enable-__cxa_atexit \
106 --enable-languages=c,c++ --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
184GCC developers are usually aware of these issues, but have not
185resolved them yet. Unless the test results are vastly different from
186those at the above URL, it is safe to continue.</para>
187
188<para>Install the package:</para>
189
190<screen><userinput>make install</userinput></screen>
191
192<note><para>At this point it is strongly recommended to repeat the
193sanity check we performed earlier in this chapter. Refer back to <xref
194linkend="ch-tools-adjusting" role=","/> and repeat the test compilation. If
195the result is wrong, the most likely reason is that the GCC Specs
196patch was not properly applied.</para></note>
197
198</sect2>
199
200<sect2 role="content"><title/>
201<para>Details on this package are located in <xref
202linkend="contents-gcc" role="."/></para>
203</sect2>
204
205</sect1>
206
Note: See TracBrowser for help on using the repository browser.