source: chapter06/gcc.xml@ ec7b2471

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.3 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 ec7b2471 was ec7b2471, checked in by Archaic <archaic@…>, 19 years ago

Mentioned which compilers could be built as is in chapter 6. Bug 1064.

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

  • Property mode set to 100644
File size: 7.6 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<sect1 id="ch-system-gcc" role="wrap">
7<title>GCC-&gcc-version;</title>
8<?dbhtml filename="gcc.html"?>
9
10<indexterm zone="ch-system-gcc"><primary sortas="a-GCC">GCC</primary></indexterm>
11
12<sect2 role="package"><title/>
13<para>The GCC package contains the GNU compiler collection, which includes
14the C and C++ compilers.</para>
15
16<segmentedlist>
17<segtitle>&buildtime;</segtitle>
18<segtitle>&diskspace;</segtitle>
19<seglistitem><seg>11.7 SBU</seg><seg>294 MB</seg></seglistitem>
20</segmentedlist>
21
22<segmentedlist>
23<segtitle>&dependencies;</segtitle>
24<seglistitem><seg>Bash, Binutils, Coreutils, Diffutils, Findutils,
25Gawk, Gettext, Glibc, Grep, Make, Perl, Sed, and Texinfo</seg></seglistitem>
26</segmentedlist>
27</sect2>
28
29<sect2 role="installation">
30<title>Installation of GCC</title>
31
32<para>This package is known to have issues when its default
33optimization flags (including the <parameter>-march</parameter> and
34<parameter>-mcpu</parameter> options) are changed. If any environment
35variables that override default optimizations have been defined, such
36as <envar>CFLAGS</envar> and <envar>CXXFLAGS</envar>,
37unset them when building GCC.</para>
38
39<para>Unpack both the gcc-core and the gcc-g++ tarballs&mdash;they will unpack
40into the same directory. Likewise, extract the gcc-testsuite package. The full
41GCC package contains additional compilers. Fortran, Java and Objective-C can be
42added to the configure line. Ada will require more work. Instructions for
43building these can be found at <ulink
44url="&blfs-root;view/svn/general/gcc.html"/>.</para>
45
46<para>Apply only the No-Fixincludes patch (not the Specs patch) also
47used in the previous chapter:</para>
48
49<screen><userinput>patch -Np1 -i ../gcc-&gcc-version;-no_fixincludes-1.patch</userinput></screen>
50
51<para>GCC fails to compile some packages outside of a base Linux From Scratch
52install (e.g., Mozilla and kdegraphics) when used in conjunction with newer
53versions of Binutils. Apply the following patch to fix this issue:</para>
54
55<screen><userinput>patch -Np1 -i ../gcc-&gcc-version;-linkonce-1.patch</userinput></screen>
56
57<para>Apply a sed substitution that will suppress the installation of
58<filename class="libraryfile">libiberty.a</filename>. The version of
59<filename class="libraryfile">libiberty.a</filename> provided by
60Binutils will be used instead:</para>
61
62<screen><userinput>sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in</userinput></screen>
63
64<para>The GCC documentation recommends building GCC outside of the source
65directory in a dedicated build directory:</para>
66
67<screen><userinput>mkdir ../gcc-build
68cd ../gcc-build</userinput></screen>
69
70<para>Prepare GCC for compilation:</para>
71
72<screen><userinput>../gcc-&gcc-version;/configure --prefix=/usr \
73 --libexecdir=/usr/lib --enable-shared \
74 --enable-threads=posix --enable-__cxa_atexit \
75 --enable-clocale=gnu --enable-languages=c,c++</userinput></screen>
76
77<para>Compile the package:</para>
78
79<screen><userinput>make</userinput></screen>
80
81<important><para>In this section, the test suite for GCC is considered
82critical. Do not skip it under any circumstance.</para></important>
83
84<para>Test the results, but do not stop at errors:</para>
85
86<screen><userinput>make -k check</userinput></screen>
87
88<para>Some of the errors are known issues and were noted in the
89previous chapter. The test suite notes from <xref
90linkend="ch-tools-gcc-pass2" role=","/> are still relevant here. Be sure to
91refer back to them as necessary.</para>
92
93<para>Install the package:</para>
94
95<screen><userinput>make install</userinput></screen>
96
97<para>Some packages expect the C PreProcessor to be installed in the
98<filename class="directory">/lib</filename> directory.
99To support those packages, create this symlink:</para>
100
101<screen><userinput>ln -s ../usr/bin/cpp /lib</userinput></screen>
102
103<para>Many packages use the name <command>cc</command> to call the C
104compiler. To satisfy those packages, create a symlink:</para>
105
106<screen><userinput>ln -s gcc /usr/bin/cc</userinput></screen>
107
108<note><para>At this point, it is strongly recommended to repeat the
109sanity check performed earlier in this chapter. Refer back to <xref
110linkend="ch-system-readjusting" role=","/> and repeat the check. If the results
111are in error, then the most likely reason is that the GCC Specs patch
112from <xref linkend="chapter-temporary-tools"/> was erroneously applied
113here.</para></note>
114
115</sect2>
116
117
118<sect2 id="contents-gcc" role="content"><title>Contents of GCC</title>
119
120<segmentedlist>
121<segtitle>Installed programs</segtitle>
122<segtitle>Installed libraries</segtitle>
123<seglistitem><seg>c++, cc (link to gcc), cpp, g++, gcc, gccbug, and
124gcov</seg>
125<seg>libgcc.a, libgcc_eh.a, libgcc_s.so, libstdc++.[a,so], and libsupc++.a</seg></seglistitem>
126</segmentedlist>
127
128<variablelist><bridgehead renderas="sect3">Short Descriptions</bridgehead>
129<?dbfo list-presentation="list"?>
130<?dbhtml list-presentation="table"?>
131
132<varlistentry id="cc">
133<term><command>cc</command></term>
134<listitem>
135<para>The C compiler</para>
136<indexterm zone="ch-system-gcc cc"><primary sortas="b-cc">cc</primary></indexterm>
137</listitem>
138</varlistentry>
139
140<varlistentry id="cpp">
141<term><command>cpp</command></term>
142<listitem>
143<para>The C preprocessor; it is used by the compiler to expand the
144#include, #define, and similar statements in the source files</para>
145<indexterm zone="ch-system-gcc cpp"><primary sortas="b-cpp">cpp</primary></indexterm>
146</listitem>
147</varlistentry>
148
149<varlistentry id="c">
150<term><command>c++</command></term>
151<listitem>
152<para>The C++ compiler</para>
153<indexterm zone="ch-system-gcc c"><primary sortas="b-c++">c++</primary></indexterm>
154</listitem>
155</varlistentry>
156
157<varlistentry id="g">
158<term><command>g++</command></term>
159<listitem>
160<para>The C++ compiler</para>
161<indexterm zone="ch-system-gcc g"><primary sortas="b-g++">g++</primary></indexterm>
162</listitem>
163</varlistentry>
164
165<varlistentry id="gcc">
166<term><command>gcc</command></term>
167<listitem>
168<para>The C compiler</para>
169<indexterm zone="ch-system-gcc gcc"><primary sortas="b-gcc">gcc</primary></indexterm>
170</listitem>
171</varlistentry>
172
173<varlistentry id="gccbug">
174<term><command>gccbug</command></term>
175<listitem>
176<para>A shell script used to help create useful bug reports</para>
177<indexterm zone="ch-system-gcc gccbug"><primary sortas="b-gccbug">gccbug</primary></indexterm>
178</listitem>
179</varlistentry>
180
181<varlistentry id="gcov">
182<term><command>gcov</command></term>
183<listitem>
184<para>A coverage testing tool; it is used to analyze programs to
185determine where optimizations will have the most effect</para>
186<indexterm zone="ch-system-gcc gcov"><primary sortas="b-gcov">gcov</primary></indexterm>
187</listitem>
188</varlistentry>
189
190<varlistentry id="libgcc">
191<term><filename class="libraryfile">libgcc</filename></term>
192<listitem>
193<para>Contains run-time support for <command>gcc</command></para>
194<indexterm zone="ch-system-gcc libgcc"><primary sortas="c-libgcc*">libgcc*</primary></indexterm>
195</listitem>
196</varlistentry>
197
198<varlistentry id="libstdc">
199<term><filename class="libraryfile">libstdc++</filename></term>
200<listitem>
201<para>The standard C++ library</para>
202<indexterm zone="ch-system-gcc libstdc"><primary sortas="c-libstdc++">libstdc++</primary></indexterm>
203</listitem>
204</varlistentry>
205
206<varlistentry id="libsupc">
207<term><filename class="libraryfile">libsupc++</filename></term>
208<listitem>
209<para>Provides supporting routines for the C++ programming language</para>
210<indexterm zone="ch-system-gcc libsupc"><primary sortas="c-libsupc++">libsupc++</primary></indexterm>
211</listitem>
212</varlistentry>
213</variablelist>
214
215</sect2>
216
217</sect1>
218
Note: See TracBrowser for help on using the repository browser.