source: chapter06/gcc.xml@ ef13657

6.0
Last change on this file since ef13657 was ef13657, checked in by Gerard Beekmans <gerard@…>, 20 years ago

Completed global edits for upcoming 6.0 release

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

  • Property mode set to 100644
File size: 6.8 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<sect1 id="ch-system-gcc" xreflabel="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>GCC installation depends on</segtitle>
24<seglistitem><seg>Bash, Binutils, Coreutils, Diffutils, Findutils,
25Gawk, Gettext, Glibc, Grep, Make, Perl, Sed, 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 <emphasis>CFLAGS</emphasis> and <emphasis>CXXFLAGS</emphasis>,
37unset or modifying them when building Binutils.</para>
38
39<para>Unpack both the gcc-core and the gcc-g++ tarballs -- they will
40unpack into the same directory. Likewise, extract the gcc-testsuite
41package. The full GCC package contains additional compilers.
42Instructions for building these can be found at <ulink
43url="&blfs-root;view/stable/general/gcc.html"/>.</para>
44
45<para>Apply only the No-Fixincludes patch (not the Specs patch) also
46used in the previous chapter:</para>
47
48<screen><userinput>patch -Np1 -i ../gcc-&gcc-version;-no_fixincludes-1.patch</userinput></screen>
49
50<para>Apply a sed substitution that will suppress the installation of
51<filename class="libraryfile">libiberty.a</filename>. The version of
52<filename class="libraryfile">libiberty.a</filename> provided by
53Binutils will be used instead:</para>
54
55<screen><userinput>sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in</userinput></screen>
56
57<para>The GCC documentation recommends building GCC outside of the source
58directory in a dedicated build directory:</para>
59
60<screen><userinput>mkdir ../gcc-build
61cd ../gcc-build</userinput></screen>
62
63<para>Now prepare GCC for compilation:</para>
64
65<screen><userinput>../gcc-&gcc-version;/configure --prefix=/usr \
66 --libexecdir=/usr/lib --enable-shared --enable-threads=posix \
67 --enable-__cxa_atexit --enable-clocale=gnu --enable-languages=c,c++</userinput></screen>
68
69<para>Compile the package:</para>
70
71<screen><userinput>make</userinput></screen>
72
73<important><para>The test suite for GCC in this section is considered
74critical. Do not skip it under any circumstance.</para></important>
75
76<para>Test the results, but don't stop at errors:</para>
77
78<screen><userinput>make -k check</userinput></screen>
79
80<para>Some of the errors are known issues and were noted in the
81previous chapter. The test suite notes from <xref
82linkend="ch-tools-gcc-pass2"/> are still relevant here. Be sure to
83refer back to them as necessary.</para>
84
85<para>Iinstall the package:</para>
86
87<screen><userinput>make install</userinput></screen>
88
89<para>Some packages expect the C PreProcessor to be installed in the
90<filename class="directory">/lib</filename> directory.
91To support those packages, create this symlink:</para>
92
93<screen><userinput>ln -s ../usr/bin/cpp /lib</userinput></screen>
94
95<para>Many packages use the name <command>cc</command> to call the C
96compiler. To satisfy those packages, create a symlink:</para>
97
98<screen><userinput>ln -s gcc /usr/bin/cc</userinput></screen>
99
100<note><para>At this point it is strongly recommended to repeat the
101sanity check we performed earlier in this chapter. Refer back to <xref
102linkend="ch-system-readjusting"/> and repeat the check. If the results
103are in error, then the most likely reason is that the GCC Specs patch
104from <xref linkend="chapter-temporary-tools"/> was erroneously applied
105here.</para></note>
106
107</sect2>
108
109
110<sect2 id="contents-gcc" role="content"><title>Contents of GCC</title>
111
112<segmentedlist>
113<segtitle>Installed programs</segtitle>
114<segtitle>Installed libraries</segtitle>
115<seglistitem><seg>c++, cc (link to gcc),
116cc1, cc1plus, collect2, cpp, g++, gcc, gccbug, and gcov</seg>
117<seg>libgcc.a, libgcc_eh.a, libgcc_s.so, libstdc++.[a,so] and libsupc++.a</seg></seglistitem>
118</segmentedlist>
119
120<variablelist><title>Short descriptions</title>
121
122<varlistentry id="cpp">
123<term><command>cpp</command></term>
124<listitem>
125<indexterm zone="ch-system-gcc cpp"><primary sortas="b-cpp">cpp</primary></indexterm>
126<para>the C preprocessor. It is used by the compiler expand the
127#include, #define, and similar statements in the source files.</para>
128</listitem>
129</varlistentry>
130
131<varlistentry id="g">
132<term><command>g++</command></term>
133<listitem>
134<indexterm zone="ch-system-gcc g"><primary sortas="b-g++">g++</primary></indexterm>
135<para>the C++ compiler.</para>
136</listitem>
137</varlistentry>
138
139<varlistentry id="gcc">
140<term><command>gcc</command></term>
141<listitem>
142<indexterm zone="ch-system-gcc gcc"><primary sortas="b-gcc">gcc</primary></indexterm>
143<para>the C compiler.</para>
144</listitem>
145</varlistentry>
146
147<varlistentry id="gccbug">
148<term><command>gccbug</command></term>
149<listitem>
150<indexterm zone="ch-system-gcc gccbug"><primary sortas="b-gccbug">gccbug</primary></indexterm>
151<para>a shell script used to help create useful bug reports.</para>
152</listitem>
153</varlistentry>
154
155<varlistentry id="gcov">
156<term><command>gcov</command></term>
157<listitem>
158<indexterm zone="ch-system-gcc gcov"><primary sortas="b-gcov">gcov</primary></indexterm>
159<para>a coverage testing tool. It is used to analyze programs to
160determine where optimizations will have the most effect.</para>
161</listitem>
162</varlistentry>
163
164<varlistentry id="libgcc">
165<term><filename class="libraryfile">libgcc*</filename></term>
166<listitem>
167<indexterm zone="ch-system-gcc libgcc"><primary sortas="c-libgcc*">libgcc*</primary></indexterm>
168<para>contains run-time support for <command>gcc</command>.</para>
169</listitem>
170</varlistentry>
171
172<varlistentry id="libstdc">
173<term><filename class="libraryfile">libstdc++</filename></term>
174<listitem>
175<indexterm zone="ch-system-gcc libstdc"><primary sortas="c-libstdc++">libstdc++</primary></indexterm>
176<para>the standard C++ library.</para>
177</listitem>
178</varlistentry>
179
180<varlistentry id="libsupc">
181<term><filename class="libraryfile">libsupc++</filename></term>
182<listitem>
183<indexterm zone="ch-system-gcc libsupc"><primary sortas="c-libsupc++">libsupc++</primary></indexterm>
184<para>provides supporting routines for the c++ programming language.</para>
185</listitem>
186</varlistentry>
187</variablelist>
188
189</sect2>
190
191</sect1>
192
Note: See TracBrowser for help on using the repository browser.