source: chapter06/gcc.xml@ c5538b3

Last change on this file since c5538b3 was a8f36125, checked in by Matthew Burgess <matthew@…>, 20 years ago
  • (all) Removed all references to the DocBook DTD
  • (docbook.rng) Added the DocBook "Gin" schema
  • (Makefile) Updated with new validation command
  • (prologue/*) Validation fixes

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/LFS-RNG/BOOK@4329 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"?>
[a8f36125]2<!DOCTYPE sect1 [
[673b0d8]3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
[a001133]6<sect1 id="ch-system-gcc" xreflabel="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>
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>
[5888299]28
[a001133]29<sect2 role="installation">
[73aedd1d]30<title>Installation of GCC</title>
31
32<para>This package is known to behave badly when you have changed its
[bb55064]33default optimization flags (including the <parameter>-march</parameter> and <parameter>-mcpu</parameter> options).
[73aedd1d]34Therefore, if you have defined any environment variables that override
[673b0d8]35default optimizations, such as CFLAGS and CXXFLAGS, we recommend un-setting
[73aedd1d]36or modifying them when building GCC.</para>
37
[37dcf2a]38<para>Unpack the GCC-core <emphasis>and</emphasis> the GCC-g++ tarball -- they
[73aedd1d]39will unfold into the same directory. You should likewise extract the
40GCC-testsuite package. The full GCC package contains even more
41compilers. Instructions for building these can be found at
42<ulink url="&blfs-root;view/stable/general/gcc.html"/>.</para>
43
[4248b0e]44<para>First apply only the No-Fixincludes patch (and <emphasis>not</emphasis>
45the Specs patch) also used in the previous chapter:</para>
[37dcf2a]46
[e075967]47<screen><userinput>patch -Np1 -i ../gcc-&gcc-version;-no_fixincludes-1.patch</userinput></screen>
[041cbb60]48
49<para>GCC fails to compile some packages outside of a base Linux From Scratch
50install (e.g., Mozilla and kdegraphics) when used in conjunction with newer
51versions of binutils. Apply the following patch to fix this issue:</para>
52
53<screen><userinput>patch -Np1 -i ../gcc-&gcc-version;-linkonce-1.patch</userinput></screen>
[37dcf2a]54
55<para>Now apply a sed substitution that will suppress the installation of
[bb55064]56<filename class="libraryfile">libiberty.a</filename>. We want to use the version of
57<filename class="libraryfile">libiberty.a</filename> provided by Binutils:</para>
[37dcf2a]58
59<screen><userinput>sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in</userinput></screen>
[73aedd1d]60
61<para>The GCC documentation recommends building GCC outside of the source
62directory in a dedicated build directory:</para>
63
64<screen><userinput>mkdir ../gcc-build
65cd ../gcc-build</userinput></screen>
66
67<para>Now prepare GCC for compilation:</para>
68
[673b0d8]69<screen><userinput>../gcc-&gcc-version;/configure --prefix=/usr \
[9dfc02f]70 --libexecdir=/usr/lib --enable-shared --enable-threads=posix \
[17fadf7]71 --enable-__cxa_atexit --enable-clocale=gnu --enable-languages=c,c++</userinput></screen>
[73aedd1d]72
73<para>Compile the package:</para>
74
75<screen><userinput>make</userinput></screen>
76
[90afe40d]77<important><para>The test suite for GCC in this section is considered
78<emphasis>critical</emphasis>. Our advice is to not skip it under any
79circumstance.</para></important>
80
[73aedd1d]81<para>Test the results, but don't stop at errors (you'll remember the few
82known ones):</para>
83
84<screen><userinput>make -k check</userinput></screen>
85
[3be4d97]86<para>The test suite notes from <xref linkend="ch-tools-gcc-pass2"/> are still very
[73aedd1d]87much appropriate here. Be sure to refer back there should you have any
88doubts.</para>
89
[673b0d8]90<para>Now install the package:</para>
[73aedd1d]91
92<screen><userinput>make install</userinput></screen>
93
94<para>Some packages expect the C PreProcessor to be installed in the
[bb55064]95<filename class="directory">/lib</filename> directory.
[673b0d8]96To support those packages, create this symlink:</para>
[73aedd1d]97
98<screen><userinput>ln -s ../usr/bin/cpp /lib</userinput></screen>
99
[90e3cb3]100<para>Many packages use the name <command>cc</command> to call the C
[73aedd1d]101compiler. To satisfy those packages, create a symlink:</para>
102
103<screen><userinput>ln -s gcc /usr/bin/cc</userinput></screen>
104
105<note><para>At this point it is strongly recommended to repeat the sanity check
106we performed earlier in this chapter. Refer back to
[a0b689e]107<xref linkend="ch-system-readjusting"/> and repeat the check. If the results
[73aedd1d]108are wrong, then most likely you erroneously applied the GCC Specs patch from
[dcff046]109<xref linkend="chapter-temporary-tools"/>.</para></note>
[73aedd1d]110
111</sect2>
[6370fa6]112
[5888299]113
[c6cb3aa]114<sect2 id="contents-gcc" role="content"><title>Contents of GCC</title>
[673b0d8]115
[c6cb3aa]116<segmentedlist>
117<segtitle>Installed programs</segtitle>
118<segtitle>Installed libraries</segtitle>
119<seglistitem><seg>c++, cc (link to gcc),
120cc1, cc1plus, collect2, cpp, g++, gcc, gccbug, and gcov</seg>
121<seg>libgcc.a, libgcc_eh.a, libgcc_s.so, libstdc++.[a,so] and libsupc++.a</seg></seglistitem>
122</segmentedlist>
[673b0d8]123
[c6cb3aa]124<variablelist><title>Short descriptions</title>
[673b0d8]125
[b8a819f]126<varlistentry id="cpp">
127<term><command>cpp</command></term>
[c6cb3aa]128<listitem>
[673b0d8]129<indexterm zone="ch-system-gcc cpp"><primary sortas="b-cpp">cpp</primary></indexterm>
[c6cb3aa]130<para>is the C preprocessor. It is used by the compiler to have the #include and
131#define and such statements expanded in the source files.</para>
132</listitem>
133</varlistentry>
134
[b8a819f]135<varlistentry id="g">
136<term><command>g++</command></term>
[c6cb3aa]137<listitem>
[673b0d8]138<indexterm zone="ch-system-gcc g"><primary sortas="b-g++">g++</primary></indexterm>
[c6cb3aa]139<para>is the C++ compiler.</para>
140</listitem>
141</varlistentry>
[673b0d8]142
[b8a819f]143<varlistentry id="gcc">
144<term><command>gcc</command></term>
[c6cb3aa]145<listitem>
[673b0d8]146<indexterm zone="ch-system-gcc gcc"><primary sortas="b-gcc">gcc</primary></indexterm>
[c6cb3aa]147<para>is the C compiler. It is used to translate
[673b0d8]148the source code of a program into assembly code.</para>
[c6cb3aa]149</listitem>
150</varlistentry>
[6370fa6]151
[b8a819f]152<varlistentry id="gccbug">
153<term><command>gccbug</command></term>
[c6cb3aa]154<listitem>
[673b0d8]155<indexterm zone="ch-system-gcc gccbug"><primary sortas="b-gccbug">gccbug</primary></indexterm>
[c6cb3aa]156<para>is a shell script used to help create good bug reports.</para>
157</listitem>
158</varlistentry>
[673b0d8]159
[b8a819f]160<varlistentry id="gcov">
161<term><command>gcov</command></term>
[c6cb3aa]162<listitem>
[673b0d8]163<indexterm zone="ch-system-gcc gcov"><primary sortas="b-gcov">gcov</primary></indexterm>
[c6cb3aa]164<para>is a coverage testing tool. It is used to
[673b0d8]165analyze programs to find out where optimizations will have the most effect.</para>
[c6cb3aa]166</listitem>
167</varlistentry>
[673b0d8]168
[b8a819f]169<varlistentry id="libgcc">
[bb55064]170<term><filename class="libraryfile">libgcc*</filename></term>
[c6cb3aa]171<listitem>
[673b0d8]172<indexterm zone="ch-system-gcc libgcc"><primary sortas="c-libgcc*">libgcc*</primary></indexterm>
[bb55064]173<para>contains run-time support for <command>gcc</command>.</para>
[c6cb3aa]174</listitem>
175</varlistentry>
[673b0d8]176
[b8a819f]177<varlistentry id="libstdc">
[bb55064]178<term><filename class="libraryfile">libstdc++</filename></term>
[c6cb3aa]179<listitem>
[673b0d8]180<indexterm zone="ch-system-gcc libstdc"><primary sortas="c-libstdc++">libstdc++</primary></indexterm>
[c6cb3aa]181<para>is the standard C++ library. It contains many frequently-used functions.</para>
182</listitem>
183</varlistentry>
[673b0d8]184
[b8a819f]185<varlistentry id="libsupc">
[bb55064]186<term><filename class="libraryfile">libsupc++</filename></term>
[c6cb3aa]187<listitem>
[673b0d8]188<indexterm zone="ch-system-gcc libsupc"><primary sortas="c-libsupc++">libsupc++</primary></indexterm>
[c6cb3aa]189<para>provides supporting routines for the c++ programming language.</para>
190</listitem>
191</varlistentry>
192</variablelist>
[673b0d8]193
194</sect2>
195
196</sect1>
Note: See TracBrowser for help on using the repository browser.