source: general/prog/gcc.xml@ 3d9141c

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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 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 3d9141c was 3d9141c, checked in by Pierre Labastie <pieere@…>, 7 years ago

Give the parameter to pass to enable-languages for BRIG and JIT, in "Command
Explanations". Suggested by akh.

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

  • Property mode set to 100644
File size: 14.5 KB
RevLine 
[52d29f7]1<?xml version="1.0" encoding="ISO-8859-1"?>
[6732c094]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[52d29f7]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
[87532434]7 <!ENTITY gcc-download-http "http://ftpmirror.gnu.org/gcc/gcc-&gcc-version;/gcc-&gcc-version;.tar.bz2">
[9268fb5]8 <!ENTITY gcc-download-ftp "ftp://ftp.gnu.org/gnu/gcc/gcc-&gcc-version;/gcc-&gcc-version;.tar.bz2">
[9562b375]9 <!ENTITY gcc-md5sum "6bf56a2bca9dac9dbbf8e8d1036964a8">
10 <!ENTITY gcc-size "80 MB">
11 <!ENTITY gcc-buildsize "7.4 GB (with tests)">
12 <!ENTITY gcc-time "61 SBU (with tests and parallelism=4)">
[52d29f7]13]>
14
[58bd309a]15<sect1 id="gcc" xreflabel="GCC-&gcc-version;">
[70e3220]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">
[ae0673a]26 <primary sortas="a-gcc-5-0">GCC-&gcc-version;</primary>
[70e3220]27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to GCC</title>
31
[ae0673a]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.
[9562b375]36 One additional languages , Ada is available in the collection. It has
37 specific requirements, so it is described in a separate page (<xref
38 linkend="gcc-ada"/>). Since C and C++ are installed in LFS, this page is
39 either for upgrading C and C++, or for installing additional compilers.
[ae0673a]40 </para>
[5512e64]41
[a3fe45a]42 &lfs80_checked;
[625d5fe5]43
[636acbb1]44 <caution>
[ae0673a]45 <para>
46 If you are upgrading <application>GCC</application> from any other
47 version prior to &gcc-version;, then you must be careful compiling 3rd
48 party kernel modules. You should ensure that the kernel and all its
49 native modules are also compiled using the same version of
50 <application>GCC</application> that you use to build the 3rd party module.
51 This issue does not affect native kernel (and kernel modules) updates,
52 as the instructions below are a complete reinstallation of
53 <application>GCC</application>. If you have existing 3rd party modules
54 installed, ensure they are recompiled using the updated version of
55 <application>GCC</application>. As always, never update the kernel
56 headers from the ones used when <application>Glibc</application> was
57 compiled during LFS.
58 </para>
59
60 <para>
61 The 5.1.0 version of GCC introduces an incompatible ABI change in the
62 C++ library <filename>libstdc++.so</filename>. This does not prevent
63 using programs compiled with the previous version of <application>GCC
64 </application>, since both old and new symbols are available in the
[87532434]65 library. But compiling, with the new version, programs which use
66 libraries compiled with the old version is likely to give errors. So,
67 if you are upgrading from any previous version prior to 5.1.0, you have
68 two solutions:
[ae0673a]69 recompile all the libraries with the new version, or use the <option>
70 --with-default-libstdcxx-abi</option> switch to configure.
71 </para>
[636acbb1]72 </caution>
73
[70e3220]74 <bridgehead renderas="sect3">Package Information</bridgehead>
75 <itemizedlist spacing="compact">
76 <listitem>
[ae0673a]77 <para>
78 Download (HTTP): <ulink url="&gcc-download-http;"/>
79 </para>
[70e3220]80 </listitem>
81 <listitem>
[ae0673a]82 <para>
83 Download (FTP): <ulink url="&gcc-download-ftp;"/>
84 </para>
[70e3220]85 </listitem>
86 <listitem>
[ae0673a]87 <para>
88 Download MD5 sum: &gcc-md5sum;
89 </para>
[70e3220]90 </listitem>
91 <listitem>
[ae0673a]92 <para>
93 Download size: &gcc-size;
94 </para>
[70e3220]95 </listitem>
96 <listitem>
[ae0673a]97 <para>
98 Estimated disk space required: &gcc-buildsize;
99 </para>
[70e3220]100 </listitem>
101 <listitem>
[ae0673a]102 <para>
103 Estimated build time: &gcc-time;
104 </para>
[70e3220]105 </listitem>
106 </itemizedlist>
[ae0673a]107
[87532434]108<!-- <bridgehead renderas="sect3">Additional Downloads</bridgehead>
[18310d86]109 <itemizedlist spacing="compact">
110 <listitem>
111 <para>
112 Required patch:
[5fd1f25b]113 <ulink url="&patch-root;/gcc-&gcc-version;-upstream_fixes-1.patch"/>
[18310d86]114 </para>
115 </listitem>
116 </itemizedlist>
[87532434]117-->
[8ddc247]118
[70e3220]119 <bridgehead renderas="sect3">GCC Dependencies</bridgehead>
120
[7cadfea]121 <bridgehead renderas="sect4">Recommended</bridgehead>
122 <para role="recommended">
[eb631ac]123 <xref linkend="dejagnu"/>, for tests
[7cadfea]124 </para>
125
[ae0673a]126 <para condition="html" role="usernotes">
127 User Notes: <ulink url="&blfs-wiki;/gcc"/>
128 </para>
[1039de3]129
[70e3220]130 </sect2>
[034eda7]131
[70e3220]132 <sect2 role="installation">
133 <title>Installation of GCC</title>
134
135 <important>
[ae0673a]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>
[70e3220]156 </important>
157
[ae0673a]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>
[c6bfee88]165
[ae0673a]166 <para>
167 Install <application>GCC</application> by running the following commands:
168 </para>
169
[92245989]170<screen><userinput>case $(uname -m) in
171 x86_64)
172 sed -e '/m64=/s/lib64/lib/' \
173 -i.orig gcc/config/i386/t-linux64
174 ;;
175esac
176
177mkdir build &amp;&amp;
[0e64979]178cd build &amp;&amp;
[2d488eb]179
[0e64979]180../configure \
[2d488eb]181 --prefix=/usr \
182 --disable-multilib \
183 --with-system-zlib \
184 --enable-languages=c,c++,fortran,go,objc,obj-c++ &amp;&amp;
[7cadfea]185make</userinput></screen>
[5512e64]186
[ae0673a]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>
[d3757f1c]194
[7cadfea]195<screen><userinput>ulimit -s 32768 &amp;&amp;
[b10cfc81]196make -k check</userinput></screen>
197<!-- The command above may error out, so using && may prevent the summary
198to be run. -->
199
[ae0673a]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>
[5512e64]205
[0e64979]206<screen><userinput>../contrib/test_summary</userinput></screen>
[8c9ec303]207
[ae0673a]208 <para>
209 Now, as the <systemitem class="username">root</systemitem> user:
210 </para>
[8c9ec303]211
[70e3220]212<screen role="root"><userinput>make install &amp;&amp;
[5512e64]213
[7cadfea]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
[38485e5c]217chown -v -R root:root \
[2d488eb]218 /usr/lib/gcc/*linux-gnu/&gcc-version;/include{,-fixed}</userinput></screen>
[f182eed]219
[ae0673a]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>
[70e3220]228
[ae0673a]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>
[034eda7]233
[70e3220]234 </sect2>
235
236 <sect2 role="commands">
237 <title>Command Explanations</title>
[8ddc247]238
[2d488eb]239 <para>
[0e64979]240 <command>mkdir build; cd build</command>: The
[2d488eb]241 <application>GCC</application> documentation recommends
242 building the package in a dedicated build directory.
243 </para>
[70e3220]244
[2d488eb]245 <para>
246 <parameter>--disable-multilib</parameter>: This parameter ensures
247 that files are created for the specific architecture of your computer.
248 </para>
[7cadfea]249
[2d488eb]250 <para>
[fa200b8]251 <parameter>--with-system-zlib</parameter>: Uses the system
[2d488eb]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>
[034eda7]257
[800c9c3]258 <para>
[2d488eb]259 <parameter>--enable-languages=c,c++,fortran,go,objc,obj-c++</parameter>:
260 This command identifies which languages to build. You may modify
[9562b375]261 this command to remove undesired languages. Two other languages can be
[3d9141c]262 added, besides ADA, which is described on a separate page: BRIG (add
263 <parameter>brig</parameter> to the list of enabled languages), a binary
[9562b375]264 format for HSAIL (Heterogeneous System Architecture Intermediate
[3d9141c]265 Language), and JIT (add <parameter>jit</parameter> to the list of enabled
266 languages), a library which can be linked into interpreters that
[9562b375]267 want to generate machine code <quote>on the fly</quote> at run-time. They
[3d9141c]268 have not been tested by the BLFS developpers.
[2d488eb]269 </para>
270
[ae0673a]271 <para>
[0e64979]272 <option>--with-default-libstdcxx-abi=gcc4-compatible</option>: Use this
273 switch if you are upgrading from a <application>GCC</application>
274 version prior to 5.1.0, and you do not want to recompile all the
275 libraries written in C++.
[ae0673a]276 </para>
277
[2d488eb]278 <para>
279 <command>ulimit -s 32768</command>: This command prevents several
280 tests from running out of stack space.
281 </para>
282
283 <para>
284 <command>make -k check</command>: This command runs the test suite
285 without stopping if any errors are encountered.
286 </para>
287
288 <para>
[9562b375]289 <command>../contrib/test_summary</command>: This command will produce
290 a summary of the test suite results. You can append <command>| grep
291 -A7 Summ</command> to the command to produce an even more condensed
292 version of the summary. You may also wish to redirect the output
[2d488eb]293 to a file for review and comparison later on.
294 </para>
295
296 <para>
297 <command>mv -v /usr/lib/*gdb.py ...</command>: The installation
298 stage puts some files used by <application>gdb</application> under the
299 <filename class="directory">/usr/lib</filename> directory. This generates
300 spurious error messages when performing <command>ldconfig</command>. This
301 command moves the files to another location.
302 </para>
303
304 <para>
305 <command>chown -v -R root:root /usr/lib/gcc/*linux-gnu/...</command>:
306 If the package is built by a user other than root, the ownership of the
307 installed <filename class="directory">include</filename> directory (and
308 its content) will be incorrect. This command changes the ownership to the
309 <systemitem class="username">root</systemitem> user and group.
310 </para>
[034eda7]311
[70e3220]312 </sect2>
313
314 <sect2 role="content">
315 <title>Contents</title>
316
[ae0673a]317 <para>
318 Some program and library names and descriptions are not listed here,
319 but can be found at
320 <ulink url="&lfs-root;/chapter06/gcc.html#contents-gcc"/> as they were
321 initially installed during the building of LFS.
322 </para>
[2d488eb]323
[70e3220]324 <segmentedlist>
325 <segtitle>Installed Programs</segtitle>
326 <segtitle>Installed Libraries</segtitle>
327 <segtitle>Installed Directories</segtitle>
328
329 <seglistitem>
[7cadfea]330 <seg>
[87532434]331 gccgo, go, gofmt and gfortran, hard-linked to architecture specific
332 names
[7cadfea]333 </seg>
334 <seg>
[d7d743f0]335 libgfortran.{so,a},
[9562b375]336 libgo.{so,a}, libgobegin.a, libgolibbegin.a,
[d7d743f0]337 libobjc.{so,a}, and numerous other run-time libraries and executables
[7cadfea]338 </seg>
339 <seg>
[b4c31a6]340 /usr/lib/go/&gcc-version;
[7cadfea]341 </seg>
[70e3220]342 </seglistitem>
343 </segmentedlist>
344
345 <variablelist>
346 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
347 <?dbfo list-presentation="list"?>
348 <?dbhtml list-presentation="table"?>
349
[034eda7]350 <varlistentry id="gccgo">
351 <term><command>gccgo</command></term>
352 <listitem>
[ae0673a]353 <para>
[5b55f9b3]354 is a GCC-based compiler for the <application>Go</application>
355 language.
[ae0673a]356 </para>
[034eda7]357 <indexterm zone="gcc gccgo">
358 <primary sortas="b-gccgo">gccgo</primary>
[70e3220]359 </indexterm>
360 </listitem>
361 </varlistentry>
362
[87532434]363 <varlistentry id="go">
364 <term><command>go</command></term>
365 <listitem>
366 <para>
367 is a tool for managing <application>Go</application> source code.
368 </para>
369 <indexterm zone="gcc go">
370 <primary sortas="b-go">go</primary>
371 </indexterm>
372 </listitem>
373 </varlistentry>
374
375 <varlistentry id="gofmt">
376 <term><command>gofmt</command></term>
377 <listitem>
378 <para>
379 is a tool for formatting <application>Go</application> source code.
380 </para>
381 <indexterm zone="gcc gofmt">
382 <primary sortas="b-gofmt">gofmt</primary>
383 </indexterm>
384 </listitem>
385 </varlistentry>
386
[800c9c3]387 <varlistentry id="gfortran">
388 <term><command>gfortran</command></term>
389 <listitem>
[ae0673a]390 <para>
391 is a GCC-based compiler for the <application>Fortran</application>
392 language.
393 </para>
[800c9c3]394 <indexterm zone="gcc gfortran">
395 <primary sortas="b-gfortran">gfortran</primary>
396 </indexterm>
397 </listitem>
398 </varlistentry>
399
[70e3220]400 </variablelist>
401
402 </sect2>
[1a686a1]403
404</sect1>
Note: See TracBrowser for help on using the repository browser.