source: general/prog/gcc.xml@ 2efb69b

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 2efb69b was 2efb69b, checked in by Pierre Labastie <pieere@…>, 9 years ago

Tag GCC for gcc-5

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@16063 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 13.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 <!ENTITY gcc-download-http "https://ftp.gnu.org/gnu/gcc/gcc-&gcc-version;/gcc-&gcc-version;.tar.bz2">
8 <!ENTITY gcc-download-ftp "ftp://ftp.gnu.org/gnu/gcc/gcc-&gcc-version;/gcc-&gcc-version;.tar.bz2">
9 <!ENTITY gcc-md5sum "d5525b1127d07d215960e6051c5da35e">
10 <!ENTITY gcc-size "91 MB">
11 <!ENTITY gcc-buildsize "6.7 GB">
12 <!ENTITY gcc-time "130 SBU (including 80 SBU for tests)">
13]>
14
15<sect1 id="gcc" xreflabel="GCC-&gcc-version;">
16 <?dbhtml filename="gcc.html" ?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>GCC-&gcc-version;</title>
24
25 <indexterm zone="gcc">
26 <primary sortas="a-gcc-5-0">GCC-&gcc-version;</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to GCC</title>
31
32 <para>
33 The <application>GCC</application> package contains the GNU Compiler
34 Collection. This page describes the installation of compilers for the
35 following languages: C, C++, Fortran, Objective C, Objective C++, and Go.
36 Two additional languages , Ada and Java are available in the collection.
37 They have specific requirements, so they are described in separate pages
38 (<xref linkend="gcc-ada"/> and <xref linkend="gcc-java"/>). Since C and
39 C++ are installed in LFS, this page is either for upgrading C and C++,
40 or for installing additional compilers.
41 </para>
42
43 &lfs77_checked;&gcc5_checked;
44
45 <caution>
46 <para>
47 If you are upgrading <application>GCC</application> from any other
48 version prior to &gcc-version;, then you must be careful compiling 3rd
49 party kernel modules. You should ensure that the kernel and all its
50 native modules are also compiled using the same version of
51 <application>GCC</application> that you use to build the 3rd party module.
52 This issue does not affect native kernel (and kernel modules) updates,
53 as the instructions below are a complete reinstallation of
54 <application>GCC</application>. If you have existing 3rd party modules
55 installed, ensure they are recompiled using the updated version of
56 <application>GCC</application>. As always, never update the kernel
57 headers from the ones used when <application>Glibc</application> was
58 compiled during LFS.
59 </para>
60
61 <para>
62 The 5.1.0 version of GCC introduces an incompatible ABI change in the
63 C++ library <filename>libstdc++.so</filename>. This does not prevent
64 using programs compiled with the previous version of <application>GCC
65 </application>, since both old and new symbols are available in the
66 library. But compiling, with the new version, programs which use libraries
67 compiled with the old version is likely to give errors. So, if you are
68 upgrading from any previous version prior to 5.1.0, you have two solutions:
69 recompile all the libraries with the new version, or use the <option>
70 --with-default-libstdcxx-abi</option> switch to configure.
71 </para>
72 </caution>
73
74 <bridgehead renderas="sect3">Package Information</bridgehead>
75 <itemizedlist spacing="compact">
76 <listitem>
77 <para>
78 Download (HTTP): <ulink url="&gcc-download-http;"/>
79 </para>
80 </listitem>
81 <listitem>
82 <para>
83 Download (FTP): <ulink url="&gcc-download-ftp;"/>
84 </para>
85 </listitem>
86 <listitem>
87 <para>
88 Download MD5 sum: &gcc-md5sum;
89 </para>
90 </listitem>
91 <listitem>
92 <para>
93 Download size: &gcc-size;
94 </para>
95 </listitem>
96 <listitem>
97 <para>
98 Estimated disk space required: &gcc-buildsize;
99 </para>
100 </listitem>
101 <listitem>
102 <para>
103 Estimated build time: &gcc-time;
104 </para>
105 </listitem>
106 </itemizedlist>
107
108 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
109 <itemizedlist spacing="compact">
110 <listitem>
111 <para>
112 Required patch:
113 <ulink url="&patch-root;/gcc-&gcc-version;-upstream_fixes-1.patch"/>
114 </para>
115 </listitem>
116 </itemizedlist>
117
118
119 <bridgehead renderas="sect3">GCC Dependencies</bridgehead>
120
121 <bridgehead renderas="sect4">Recommended</bridgehead>
122 <para role="recommended">
123 <xref linkend="dejagnu"/>, for tests
124 </para>
125
126 <para condition="html" role="usernotes">
127 User Notes: <ulink url="&blfs-wiki;/gcc"/>
128 </para>
129
130 </sect2>
131
132 <sect2 role="installation">
133 <title>Installation of GCC</title>
134
135 <important>
136 <para>
137 Even if you specify only languages other than C and C++ to the
138 <command>./configure</command> command below, the
139 installation process will overwrite your existing
140 <application>GCC</application> C and C++ compilers and libraries.
141 Having the <application>Tcl</application>,
142 <application>Expect</application> and <application>DejaGnu</application>
143 packages installed before beginning the build is highly recommended so
144 you can run the full suite of tests.
145 </para>
146
147 <para>
148 Do not continue with the <command>make install</command> command
149 until you are confident the build was successful. You can compare your
150 test results with those found at <ulink
151 url="http://gcc.gnu.org/ml/gcc-testresults/"/>. You may also want to
152 refer to the information found in the <application>GCC</application>
153 section of Chapter 6 in the LFS book (<ulink
154 url="&lfs-root;/chapter06/gcc.html"/>).
155 </para>
156 </important>
157
158 <para>
159 The instructions below are intentionally performing a
160 <quote>bootstrap</quote> process. Bootstrapping is needed for robustness
161 and is highly recommended when upgrading the compilers version. To disable
162 bootstrap anyways, add <parameter>--disable-bootstrap</parameter> to the
163 <command>./configure</command> options below.
164 </para>
165
166 <para>
167 As in LFS, fix some problems identified upstream:
168 </para>
169
170<screen><userinput>patch -Np1 -i ../gcc-5.1.0-upstream_fixes-1.patch</userinput></screen>
171
172
173 <para>
174 Install <application>GCC</application> by running the following commands:
175 </para>
176
177<screen><userinput>mkdir ../gcc-build &amp;&amp;
178cd ../gcc-build &amp;&amp;
179
180../gcc-&gcc-version;/configure \
181 --prefix=/usr \
182 --disable-multilib \
183 --with-system-zlib \
184 --enable-languages=c,c++,fortran,go,objc,obj-c++ &amp;&amp;
185make</userinput></screen>
186
187 <para>
188 If you have installed additional packages such as
189 <application>Valgrind</application> and <application>GDB</application>,
190 the <application>GCC</application> part of the testsuite will run more
191 tests than in LFS. Some of those will report FAIL and others XPASS
192 (pass when expected to FAIL). To run the tests, issue:
193 </para>
194
195<screen><userinput>ulimit -s 32768 &amp;&amp;
196make -k check</userinput></screen>
197<!-- The command above may error out, so using && may prevent the summary
198to be run. -->
199
200 <para>
201 The tests are very long, and the results may be hard to find in the
202 logs, specially if you use parallel jobs with make. You can get a summary
203 of the tests with:
204 </para>
205
206<screen><userinput>../gcc-&gcc-version;/contrib/test_summary</userinput></screen>
207
208 <para>
209 Now, as the <systemitem class="username">root</systemitem> user:
210 </para>
211
212<screen role="root"><userinput>make install &amp;&amp;
213
214mkdir -pv /usr/share/gdb/auto-load/usr/lib &amp;&amp;
215mv -v /usr/lib/*gdb.py /usr/share/gdb/auto-load/usr/lib &amp;&amp;
216
217chown -v -R root:root \
218 /usr/lib/gcc/*linux-gnu/&gcc-version;/include{,-fixed}</userinput></screen>
219
220 <para>
221 Some packages expect to find the C preprocessor in
222 <filename class="directory">/lib</filename> or may refer to the C compiler
223 under the name <command>cc</command>. The following symbolic links are not
224 needed if you have followed the LFS instructions, since they
225 have been already created. If you do not have them on your system, issue
226 as the <systemitem class="username">root</systemitem> user:
227 </para>
228
229<screen role="root"><userinput>ln -v -sf ../usr/bin/cpp /lib &amp;&amp;
230ln -v -sf gcc /usr/bin/cc &amp;&amp;
231install -v -dm755 /usr/lib/bfd-plugins &amp;&amp;
232ln -sfv ../../libexec/gcc/$(gcc -dumpmachine)/&gcc-version;/liblto_plugin.so /usr/lib/bfd-plugins/</userinput></screen>
233
234 </sect2>
235
236 <sect2 role="commands">
237 <title>Command Explanations</title>
238
239 <para>
240 <command>mkdir ../gcc-build; cd ../gcc-build</command>: The
241 <application>GCC</application> documentation recommends
242 building the package in a dedicated build directory.
243 </para>
244
245 <para>
246 <parameter>--disable-multilib</parameter>: This parameter ensures
247 that files are created for the specific architecture of your computer.
248 </para>
249
250 <para>
251 <parameter>--with-system-zlib</parameter>: Uses the system
252 <application>zlib</application> instead of the bundled one.
253 <application>zlib</application> is used for compressing
254 and uncompressing <application>GCC</application>'s intermediate
255 language in LTO (Link Time Optimization) object files.
256 </para>
257
258 <para>
259 <parameter>--enable-languages=c,c++,fortran,go,objc,obj-c++</parameter>:
260 This command identifies which languages to build. You may modify
261 this command to remove undesired languages.
262 </para>
263
264 <para>
265 <option>--with-default-libstdcxx-abi=c++98</option>: Use this switch if you
266 are upgrading from a <application>GCC</application> version prior to 5.1.0,
267 and you do not want to recompile all the libraries written in C++.
268 </para>
269
270 <para>
271 <command>ulimit -s 32768</command>: This command prevents several
272 tests from running out of stack space.
273 </para>
274
275 <para>
276 <command>make -k check</command>: This command runs the test suite
277 without stopping if any errors are encountered.
278 </para>
279
280 <para>
281 <command>../gcc-&gcc-version;/contrib/test_summary</command>: This
282 command will produce a summary of the test suite results. You can append
283 <command>| grep -A7 Summ</command> to the command to produce an even more
284 condensed version of the summary. You may also wish to redirect the output
285 to a file for review and comparison later on.
286 </para>
287
288 <para>
289 <command>mv -v /usr/lib/*gdb.py ...</command>: The installation
290 stage puts some files used by <application>gdb</application> under the
291 <filename class="directory">/usr/lib</filename> directory. This generates
292 spurious error messages when performing <command>ldconfig</command>. This
293 command moves the files to another location.
294 </para>
295
296 <para>
297 <command>chown -v -R root:root /usr/lib/gcc/*linux-gnu/...</command>:
298 If the package is built by a user other than root, the ownership of the
299 installed <filename class="directory">include</filename> directory (and
300 its content) will be incorrect. This command changes the ownership to the
301 <systemitem class="username">root</systemitem> user and group.
302 </para>
303
304 </sect2>
305
306 <sect2 role="content">
307 <title>Contents</title>
308
309 <para>
310 Some program and library names and descriptions are not listed here,
311 but can be found at
312 <ulink url="&lfs-root;/chapter06/gcc.html#contents-gcc"/> as they were
313 initially installed during the building of LFS.
314 </para>
315
316 <segmentedlist>
317 <segtitle>Installed Programs</segtitle>
318 <segtitle>Installed Libraries</segtitle>
319 <segtitle>Installed Directories</segtitle>
320
321 <seglistitem>
322 <seg>
323 gccgo and gfortran, hard-linked to architecture specific names
324 </seg>
325 <seg>
326 libgfortran.{so,a},
327 libgo.{so,a}, libgobegin.a, libnetgo.a, libobjc.{so,a}, and numerous
328 other run-time libraries and executables in <filename class="directory">
329 /usr/lib/gcc</filename>, <filename class="directory">
330 /usr/libexec/gcc</filename>, and <filename class="directory">
331 /usr/lib/go</filename>
332 </seg>
333 <seg>
334 /usr/lib/gcc/&lt;arch-triplet&gt;/&gcc-version;/include/objc and
335 /usr/lib/go
336 </seg>
337 </seglistitem>
338 </segmentedlist>
339
340 <variablelist>
341 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
342 <?dbfo list-presentation="list"?>
343 <?dbhtml list-presentation="table"?>
344
345 <varlistentry id="gccgo">
346 <term><command>gccgo</command></term>
347 <listitem>
348 <para>
349 is a GCC-based compiler for the <application>Go</application> language.
350 </para>
351 <indexterm zone="gcc gccgo">
352 <primary sortas="b-gccgo">gccgo</primary>
353 </indexterm>
354 </listitem>
355 </varlistentry>
356
357 <varlistentry id="gfortran">
358 <term><command>gfortran</command></term>
359 <listitem>
360 <para>
361 is a GCC-based compiler for the <application>Fortran</application>
362 language.
363 </para>
364 <indexterm zone="gcc gfortran">
365 <primary sortas="b-gfortran">gfortran</primary>
366 </indexterm>
367 </listitem>
368 </varlistentry>
369
370 </variablelist>
371
372 </sect2>
373
374</sect1>
Note: See TracBrowser for help on using the repository browser.