source: chapter05/gcc-pass2.xml@ b8dd57d6

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

Use --with-arch=i486 only for x86. Also force '-m64' for 64-bit builds.

Lastly, use 'make' instead of 'make bootstrap' on gcc pass 1. The bootstrap is now default.

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

  • Property mode set to 100644
File size: 9.9 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>The following command will change the location of GCC's default
88 dynamic linker to use the one we installed in
89 <filename class="directory">/tools</filename>. It also removes <filename
90 class="directory">/usr/include</filename> from GCC's include search path.
91 Doing this now rather than adjusting the specs file after installation
92 ensures that the new dynamic linker is used during the actual build of
93 GCC. That is, all of the binaries created during the build will link
94 against the new Glibc. Issue:</para>
95
96<screen><userinput>for file in $(find gcc/config -name linux64.h -o -name linux.h)
97do
98 cp -uv $file{,.orig}
99 sed -e 's@/lib\(64\)\?\(32\)\?/ld@/tools&amp;@g' \
100 -e 's@/usr@/tools@g' $file.orig &gt; $file
101 echo "
102#undef STANDARD_INCLUDE_DIR
103#define STANDARD_INCLUDE_DIR 0" &gt;&gt; $file
104 touch $file.orig
105done</userinput></screen>
106
107 <para>In case the above seems hard to follow, let's break it down a bit.
108 First we find all the files under the gcc/config directory that are named
109 either <filename>linux.h</filename> or <filename>linux64.h</filename>.
110 For each file found, we copy it to a file of the same name but with an added
111 suffix of <quote>.orig</quote>. Then the first sed expression prepends
112 <quote>/tools</quote> to every instance of <quote>/lib/ld</quote>,
113 <quote>/lib64/ld</quote> or <quote>/lib32/ld</quote>, while the second one
114 replaces hard-coded instances of <quote>/usr</quote>. Then we add our define
115 statments altering the include search path to the end of the file. Finally,
116 we use <command>touch</command> to update the timestamp on the copied files.
117 When used in conjunction with <command>cp -u</command>, this prevents unexpected
118 changes to the original files in case the command is inadvertently run twice.
119 </para>
120
121 <para>Unsetting the multlib spec for GCC ensures that it
122 won't attempt to link against libraries on the host:</para>
123
124<screen><userinput>for file in $(find gcc/config -name t-linux64) ; do \
125 cp -v $file{,.orig}
126 sed '/MULTILIB_OSDIRNAMES/d' $file.orig &gt; $file
127done</userinput></screen>
128
129 <para>Create a separate build directory again:</para>
130
131<screen><userinput>mkdir -v ../gcc-build
132cd ../gcc-build</userinput></screen>
133
134 <para>Before starting to build GCC, remember to unset any environment
135 variables that override the default optimization flags.</para>
136
137 <para>The --with-arch flag is only necessary for x86 machines.</para>
138
139<screen><userinput>case $(uname -m) in
140 x86) WITHARCH="--with-arch=i486" ;;
141esac</userinput></screen>
142
143 <para>Now prepare GCC for compilation:</para>
144
145<screen><userinput>../gcc-&gcc-version;/configure --prefix=/tools \
146 --with-local-prefix=/tools --enable-clocale=gnu \
147 --enable-shared --enable-threads=posix \
148 --enable-__cxa_atexit --enable-languages=c,c++ \
149 --disable-libstdcxx-pch --disable-multilib \
150 $WITHARCH
151unset WITHARCH</userinput></screen>
152
153 <variablelist>
154 <title>The meaning of the new configure options:</title>
155
156 <varlistentry>
157 <term><parameter>--enable-clocale=gnu</parameter></term>
158 <listitem>
159 <para>This option ensures the correct locale model is selected
160 for the C++ libraries under all circumstances. If the configure
161 script finds the <emphasis>de_DE</emphasis> locale installed,
162 it will select the correct gnu locale model. However, if the
163 <emphasis>de_DE</emphasis> locale is not installed, there is the
164 risk of building Application Binary Interface (ABI)-incompatible
165 C++ libraries because the incorrect generic locale model may be
166 selected.</para>
167 </listitem>
168 </varlistentry>
169
170 <varlistentry>
171 <term><parameter>--enable-threads=posix</parameter></term>
172 <listitem>
173 <para>This enables C++ exception handling for multi-threaded code.</para>
174 </listitem>
175 </varlistentry>
176
177 <varlistentry>
178 <term><parameter>--enable-__cxa_atexit</parameter></term>
179 <listitem>
180 <para>This option allows use of <function>__cxa_atexit</function>,
181 rather than <function>atexit</function>, to register C++ destructors
182 for local statics and global objects. This option is essential for
183 fully standards-compliant handling of destructors. It also affects
184 the C++ ABI, and therefore results in C++ shared libraries and C++
185 programs that are interoperable with other Linux distributions.</para>
186 </listitem>
187 </varlistentry>
188
189 <varlistentry>
190 <term><parameter>--enable-languages=c,c++</parameter></term>
191 <listitem>
192 <para>This option ensures that both the C and C++ compilers are
193 built.</para>
194 </listitem>
195 </varlistentry>
196
197 <varlistentry>
198 <term><parameter>--disable-libstdcxx-pch</parameter></term>
199 <listitem>
200 <para>Do not build the pre-compiled header (PCH) for
201 <filename class="libraryfile">libstdc++</filename>. It takes up a
202 lot of space, and we have no use for it.</para>
203 </listitem>
204 </varlistentry>
205
206 </variablelist>
207
208 <para>Compile the package:</para>
209
210<screen><userinput>make</userinput></screen>
211
212 <para>There is no need to use the <parameter>bootstrap</parameter> target
213 now because the compiler being used to compile this GCC was built from
214 the exact same version of the GCC sources used earlier.</para>
215
216 <para>Compilation is now complete. As previously mentioned, running the test
217 suites for the temporary tools compiled in this chapter is not mandatory.
218 To run the GCC test suite anyway, use the following command:</para>
219
220<screen><userinput>make -k check</userinput></screen>
221
222 <para>The <parameter>-k</parameter> flag is used to make the test suite run
223 through to completion and not stop at the first failure. The GCC test
224 suite is very comprehensive and is almost guaranteed to generate a few
225 failures.</para>
226
227 <para>For a discussion of test failures that are of particular
228 importance, please see <xref linkend="ch-system-gcc" role="."/></para>
229
230 <para>Install the package:</para>
231
232<screen><userinput>make install</userinput></screen>
233
234 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
235 href="adjusting.xml"
236 xpointer="xpointer(/sect1/caution[1])"/>
237
238 </sect2>
239
240 <sect2 role="content">
241 <title/>
242
243 <para>Details on this package are located in
244 <xref linkend="contents-gcc" role="."/></para>
245
246 </sect2>
247
248</sect1>
Note: See TracBrowser for help on using the repository browser.