source: chapter06/gcc.xml@ 03084bc9

6.0
Last change on this file since 03084bc9 was 03084bc9, checked in by Matthew Burgess <matthew@…>, 20 years ago
  • Added gcc-3.4.1-linkonce-1.patch so as Mozilla and kdegraphics can be compiled successfully

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

  • Property mode set to 100644
File size: 7.1 KB
RevLine 
[673b0d8]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]>
[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,
[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
36as <emphasis>CFLAGS</emphasis> and <emphasis>CXXFLAGS</emphasis>,
[24a08b9]37unset them when building GCC.</para>
[ef13657]38
[69993f4]39<para>Unpack both the gcc-core and the gcc-g++ tarballs&mdash;they will
[ef13657]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>
[37dcf2a]47
[e075967]48<screen><userinput>patch -Np1 -i ../gcc-&gcc-version;-no_fixincludes-1.patch</userinput></screen>
[37dcf2a]49
[03084bc9]50<para>GCC fails to compile some packages outside of a base Linux From Scratch
51install (e.g., Mozilla and kdegraphics) when used in conjunction with newer
52versions of binutils. Apply the following patch to fix this issue:</para>
53
54<screen><userinput>patch -Np1 -i ../gcc-&gcc-version;-linkonce-1.patch</userinput></screen>
55
[ef13657]56<para>Apply a sed substitution that will suppress the installation of
57<filename class="libraryfile">libiberty.a</filename>. The version of
58<filename class="libraryfile">libiberty.a</filename> provided by
59Binutils will be used instead:</para>
[37dcf2a]60
61<screen><userinput>sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in</userinput></screen>
[73aedd1d]62
63<para>The GCC documentation recommends building GCC outside of the source
64directory in a dedicated build directory:</para>
65
66<screen><userinput>mkdir ../gcc-build
67cd ../gcc-build</userinput></screen>
68
69<para>Now prepare GCC for compilation:</para>
70
[673b0d8]71<screen><userinput>../gcc-&gcc-version;/configure --prefix=/usr \
[9dfc02f]72 --libexecdir=/usr/lib --enable-shared --enable-threads=posix \
[17fadf7]73 --enable-__cxa_atexit --enable-clocale=gnu --enable-languages=c,c++</userinput></screen>
[73aedd1d]74
75<para>Compile the package:</para>
76
77<screen><userinput>make</userinput></screen>
78
[69993f4]79<important><para>In this section, the test suite for GCC is considered
[ef13657]80critical. Do not skip it under any circumstance.</para></important>
[90afe40d]81
[69993f4]82<para>Test the results, but do not stop at errors:</para>
[73aedd1d]83
84<screen><userinput>make -k check</userinput></screen>
85
[ef13657]86<para>Some of the errors are known issues and were noted in the
87previous chapter. The test suite notes from <xref
88linkend="ch-tools-gcc-pass2"/> are still relevant here. Be sure to
89refer back to them as necessary.</para>
[73aedd1d]90
[69993f4]91<para>Install the package:</para>
[73aedd1d]92
93<screen><userinput>make install</userinput></screen>
94
95<para>Some packages expect the C PreProcessor to be installed in the
[bb55064]96<filename class="directory">/lib</filename> directory.
[673b0d8]97To support those packages, create this symlink:</para>
[73aedd1d]98
99<screen><userinput>ln -s ../usr/bin/cpp /lib</userinput></screen>
100
[90e3cb3]101<para>Many packages use the name <command>cc</command> to call the C
[73aedd1d]102compiler. To satisfy those packages, create a symlink:</para>
103
104<screen><userinput>ln -s gcc /usr/bin/cc</userinput></screen>
105
[69993f4]106<note><para>At this point, it is strongly recommended to repeat the
107sanity check performed earlier in this chapter. Refer back to <xref
[ef13657]108linkend="ch-system-readjusting"/> and repeat the check. If the results
109are in error, then the most likely reason is that the GCC Specs patch
110from <xref linkend="chapter-temporary-tools"/> was erroneously applied
111here.</para></note>
[73aedd1d]112
113</sect2>
[6370fa6]114
[5888299]115
[c6cb3aa]116<sect2 id="contents-gcc" role="content"><title>Contents of GCC</title>
[673b0d8]117
[c6cb3aa]118<segmentedlist>
119<segtitle>Installed programs</segtitle>
120<segtitle>Installed libraries</segtitle>
121<seglistitem><seg>c++, cc (link to gcc),
122cc1, cc1plus, collect2, cpp, g++, gcc, gccbug, and gcov</seg>
[69993f4]123<seg>libgcc.a, libgcc_eh.a, libgcc_s.so, libstdc++.[a,so], and libsupc++.a</seg></seglistitem>
[c6cb3aa]124</segmentedlist>
[673b0d8]125
[3ed279f]126<variablelist><bridgehead renderas="sect3">Short descriptions</bridgehead>
127<?dbfo list-presentation="list"?>
[673b0d8]128
[b8a819f]129<varlistentry id="cpp">
130<term><command>cpp</command></term>
[c6cb3aa]131<listitem>
[ef13657]132<para>the C preprocessor. It is used by the compiler expand the
133#include, #define, and similar statements in the source files.</para>
[3ed279f]134<indexterm zone="ch-system-gcc cpp"><primary sortas="b-cpp">cpp</primary></indexterm>
[c6cb3aa]135</listitem>
136</varlistentry>
137
[b8a819f]138<varlistentry id="g">
139<term><command>g++</command></term>
[c6cb3aa]140<listitem>
[ef13657]141<para>the C++ compiler.</para>
[3ed279f]142<indexterm zone="ch-system-gcc g"><primary sortas="b-g++">g++</primary></indexterm>
[c6cb3aa]143</listitem>
144</varlistentry>
[673b0d8]145
[b8a819f]146<varlistentry id="gcc">
147<term><command>gcc</command></term>
[c6cb3aa]148<listitem>
[ef13657]149<para>the C compiler.</para>
[3ed279f]150<indexterm zone="ch-system-gcc gcc"><primary sortas="b-gcc">gcc</primary></indexterm>
[c6cb3aa]151</listitem>
152</varlistentry>
[6370fa6]153
[b8a819f]154<varlistentry id="gccbug">
155<term><command>gccbug</command></term>
[c6cb3aa]156<listitem>
[ef13657]157<para>a shell script used to help create useful bug reports.</para>
[3ed279f]158<indexterm zone="ch-system-gcc gccbug"><primary sortas="b-gccbug">gccbug</primary></indexterm>
[c6cb3aa]159</listitem>
160</varlistentry>
[673b0d8]161
[b8a819f]162<varlistentry id="gcov">
163<term><command>gcov</command></term>
[c6cb3aa]164<listitem>
[ef13657]165<para>a coverage testing tool. It is used to analyze programs to
166determine where optimizations will have the most effect.</para>
[3ed279f]167<indexterm zone="ch-system-gcc gcov"><primary sortas="b-gcov">gcov</primary></indexterm>
[c6cb3aa]168</listitem>
169</varlistentry>
[673b0d8]170
[b8a819f]171<varlistentry id="libgcc">
[bb55064]172<term><filename class="libraryfile">libgcc*</filename></term>
[c6cb3aa]173<listitem>
[bb55064]174<para>contains run-time support for <command>gcc</command>.</para>
[3ed279f]175<indexterm zone="ch-system-gcc libgcc"><primary sortas="c-libgcc*">libgcc*</primary></indexterm>
[c6cb3aa]176</listitem>
177</varlistentry>
[673b0d8]178
[b8a819f]179<varlistentry id="libstdc">
[bb55064]180<term><filename class="libraryfile">libstdc++</filename></term>
[c6cb3aa]181<listitem>
[ef13657]182<para>the standard C++ library.</para>
[3ed279f]183<indexterm zone="ch-system-gcc libstdc"><primary sortas="c-libstdc++">libstdc++</primary></indexterm>
[c6cb3aa]184</listitem>
185</varlistentry>
[673b0d8]186
[b8a819f]187<varlistentry id="libsupc">
[bb55064]188<term><filename class="libraryfile">libsupc++</filename></term>
[c6cb3aa]189<listitem>
190<para>provides supporting routines for the c++ programming language.</para>
[3ed279f]191<indexterm zone="ch-system-gcc libsupc"><primary sortas="c-libsupc++">libsupc++</primary></indexterm>
[c6cb3aa]192</listitem>
193</varlistentry>
194</variablelist>
[673b0d8]195
196</sect2>
197
198</sect1>
[ef13657]199
Note: See TracBrowser for help on using the repository browser.