source: chapter06/gcc.xml@ 1540ea0

Last change on this file since 1540ea0 was a0e1913, checked in by Manuel Canales Esparcia <manuel@…>, 20 years ago

Removed the package name from the dependencies titles.

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

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