source: chapter05/gcc-pass2.xml@ d22a5031

Last change on this file since d22a5031 was 30dc5a1, checked in by Jeremy Huntwork <jhuntwork@…>, 17 years ago

Typo fix

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

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