source: chapter05/gcc-pass2.xml@ 9912f87

Last change on this file since 9912f87 was 7336a40, checked in by Jeremy Huntwork <jhuntwork@…>, 17 years ago

Made book buildable by powerpc.

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

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