source: chapter05/gcc-pass2.xml@ e747759

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

Added sect1info blocks to packages pages.

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

  • Property mode set to 100644
File size: 8.6 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>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>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 bootstrap build performed in <xref linkend="ch-tools-gcc-pass1"/>
84 built GCC with the <option>-fomit-frame-pointer</option> compiler flag.
85 Non-bootstrap builds omit this flag by default, so apply the following
86 <command>sed</command> to use it in order to ensure consistent compiler
87 builds:</para>
88
89<screen><userinput>cp -v gcc/Makefile.in{,.tmp}
90sed 's/^XCFLAGS =$/&amp; -fomit-frame-pointer/' gcc/Makefile.in.tmp \
91 &gt; gcc/Makefile.in</userinput></screen>
92
93 <para>Apply the following patch to change the location of GCC's default
94 dynamic linker (typically <filename
95 class="libraryfile">ld-linux.so.2</filename>):</para>
96
97<screen><userinput>patch -Np1 -i ../&gcc-specs-patch;</userinput></screen>
98
99 <para>The above patch also removes <filename
100 class="directory">/usr/include</filename> from GCC's include search path.
101 Patching now rather than adjusting the specs file after installation
102 ensures that the new dynamic linker is used during the actual build of
103 GCC. That is, all of the binaries created during the build will link
104 against the new Glibc.</para>
105
106 <important>
107 <para>The above patch is critical in ensuring a successful overall
108 build. Do not forget to apply it.</para>
109 </important>
110
111 <para>Create a separate build directory again:</para>
112
113<screen><userinput>mkdir -v ../gcc-build
114cd ../gcc-build</userinput></screen>
115
116 <para>Before starting to build GCC, remember to unset any environment
117 variables that override the default optimization flags.</para>
118
119 <para>Now prepare GCC for compilation:</para>
120
121<screen><userinput>../gcc-&gcc-version;/configure --prefix=/tools \
122 --with-local-prefix=/tools --enable-clocale=gnu \
123 --enable-shared --enable-threads=posix \
124 --enable-__cxa_atexit --enable-languages=c,c++ \
125 --disable-libstdcxx-pch</userinput></screen>
126
127 <variablelist>
128 <title>The meaning of the new configure options:</title>
129
130 <varlistentry>
131 <term><parameter>--enable-clocale=gnu</parameter></term>
132 <listitem>
133 <para>This option ensures the correct locale model is selected
134 for the C++ libraries under all circumstances. If the configure
135 script finds the <emphasis>de_DE</emphasis> locale installed,
136 it will select the correct gnu locale model. However, if the
137 <emphasis>de_DE</emphasis> locale is not installed, there is the
138 risk of building Application Binary Interface (ABI)-incompatible
139 C++ libraries because the incorrect generic locale model may be
140 selected.</para>
141 </listitem>
142 </varlistentry>
143
144 <varlistentry>
145 <term><parameter>--enable-threads=posix</parameter></term>
146 <listitem>
147 <para>This enables C++ exception handling for multi-threaded code.</para>
148 </listitem>
149 </varlistentry>
150
151 <varlistentry>
152 <term><parameter>--enable-__cxa_atexit</parameter></term>
153 <listitem>
154 <para>This option allows use of <function>__cxa_atexit</function>,
155 rather than <function>atexit</function>, to register C++ destructors
156 for local statics and global objects. This option is essential for
157 fully standards-compliant handling of destructors. It also affects
158 the C++ ABI, and therefore results in C++ shared libraries and C++
159 programs that are interoperable with other Linux distributions.</para>
160 </listitem>
161 </varlistentry>
162
163 <varlistentry>
164 <term><parameter>--enable-languages=c,c++</parameter></term>
165 <listitem>
166 <para>This option ensures that both the C and C++ compilers are
167 built.</para>
168 </listitem>
169 </varlistentry>
170
171 <varlistentry>
172 <term><parameter>--disable-libstdcxx-pch</parameter></term>
173 <listitem>
174 <para>Do not build the pre-compiled header (PCH) for
175 <filename class="libraryfile">libstdc++</filename>. It takes up a
176 lot of space, and we have no use for it.</para>
177 </listitem>
178 </varlistentry>
179
180 </variablelist>
181
182 <para>Compile the package:</para>
183
184<screen><userinput>make</userinput></screen>
185
186 <para>There is no need to use the <parameter>bootstrap</parameter> target
187 now because the compiler being used to compile this GCC was built from
188 the exact same version of the GCC sources used earlier.</para>
189
190 <para>Compilation is now complete. As previously mentioned, running the test
191 suites for the temporary tools compiled in this chapter is not mandatory.
192 To run the GCC test suite anyway, use the following command:</para>
193
194<screen><userinput>make -k check</userinput></screen>
195
196 <para>The <parameter>-k</parameter> flag is used to make the test suite run
197 through to completion and not stop at the first failure. The GCC test
198 suite is very comprehensive and is almost guaranteed to generate a few
199 failures.</para>
200
201 <para>For a discussion of test failures that are of particular
202 importance, please see <xref linkend="ch-system-gcc" role="."/></para>
203
204 <para>Install the package:</para>
205
206<screen><userinput>make install</userinput></screen>
207
208 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
209 href="adjusting.xml"
210 xpointer="xpointer(/sect1/caution[1])"/>
211
212 </sect2>
213
214 <sect2 role="content">
215 <title/>
216
217 <para>Details on this package are located in
218 <xref linkend="contents-gcc" role="."/></para>
219
220 </sect2>
221
222</sect1>
Note: See TracBrowser for help on using the repository browser.