source: clfs-sysroot/BOOK/final-system/common/gcc.xml @ 12e6567

Last change on this file since 12e6567 was 12e6567, checked in by Joe Ciccone <jciccone@…>, 15 years ago

Added a sysroot wrapper.
Updated the build variables section of the book, each package uses its own.

  • Property mode set to 100644
File size: 8.5 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3  "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4  <!ENTITY % general-entities SYSTEM "../../general.ent">
5  %general-entities;
6]>
7
8<sect1 id="ch-system-gcc" role="wrap">
9  <?dbhtml filename="gcc.html"?>
10
11  <title>GCC-&gcc-version;</title>
12
13  <indexterm zone="ch-system-gcc">
14    <primary sortas="a-GCC">GCC</primary>
15  </indexterm>
16
17  <sect2 role="package">
18    <title/>
19
20    <para>The GCC package contains the GNU compiler collection, which includes
21    the C and C++ compilers.</para>
22
23  </sect2>
24
25  &env-target;
26
27  <sect2 role="installation">
28    <title>Installation of GCC</title>
29
30    <para os="p1">To make sure that a couple of tools use the proper syntax,
31    apply the following patch:</para>
32
33<screen os="p2"><userinput>patch -Np1 -i ../&gcc-posix-patch;</userinput></screen>
34
35    <para os="p3">The following patch contains a number of updates to the
36    &gcc-version; branch by the GCC developers:</para>
37
38<screen os="p4"><userinput>patch -Np1 -i ../&gcc-branch_update-patch;</userinput></screen>
39
40    <para os="a">Apply a <command>sed</command> substitution that will suppress the
41    installation of <filename class="libraryfile">libiberty.a</filename>. The
42    version of <filename class="libraryfile">libiberty.a</filename> provided by
43    Binutils will be used instead:</para>
44
45<screen os="b"><userinput>cp libiberty/Makefile.in{,.orig}
46sed 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in.orig &gt; \
47    libiberty/Makefile.in</userinput></screen>
48
49    <para os="e1">GCC provides a <command>gccbug</command> script which detects at
50    compile time whether <command>mktemp</command> is present, and hardcodes
51    the result in a test. If <command>mktemp</command> is not found, the
52    script will fall back to using less random names for temporary files.
53    <command>mktemp</command> will be installed as part of Coreutils
54    later, so the following <command>sed</command> will simulate its presence:</para>
55
56<screen os="e2"><userinput>cp gcc/gccbug.in{,.orig}
57sed 's/@have_mktemp_command@/yes/' gcc/gccbug.in.orig &gt; gcc/gccbug.in</userinput></screen>
58
59    <para os="s1">The <command>fixincludes</command> script attempts to "fix"
60    the system headers installed so far. Since GCC is cross-compiled expecting
61    the system headers to be in <filename class="directory">/usr/include</filename>,
62    the script will be looking at the host system's headers. The following sed
63    prevents <command>fixincludes</command> from running:</para>
64
65<screen os="s2"><userinput>cp gcc/Makefile.in{,.orig}
66sed 's@\./fixinc\.sh@-c true@' gcc/Makefile.in.orig &gt; gcc/Makefile.in</userinput></screen>
67
68    <para os="c">The GCC documentation recommends building GCC outside of the source
69    directory in a dedicated build directory:</para>
70
71<screen os="d"><userinput>mkdir -v ../gcc-build
72cd ../gcc-build</userinput></screen>
73
74    <para os="e">Prepare GCC for compilation:</para>
75
76<screen os="f"><userinput>../gcc-&gcc-version;/configure --prefix=/usr --libexecdir=/usr/lib \
77    --build=${CLFS_HOST} --host=${CLFS_TARGET} --target=${CLFS_TARGET} \
78    --enable-shared --enable-threads=posix --enable-__cxa_atexit \
79    --enable-c99 --enable-long-long --enable-clocale=gnu \
80    --enable-languages=c,c++ --disable-libstdcxx-pch</userinput></screen>
81
82    <para os="g">Compile the package:</para>
83
84<screen os="h"><userinput>make</userinput></screen>
85
86    <para os="i">Install the package:</para>
87
88<screen os="j"><userinput>make DESTDIR=${CLFS} install</userinput></screen>
89
90    <para os="k">Some packages expect the C preprocessor to be installed in the
91    <filename class="directory">/lib</filename> directory.
92    To support those packages, create this symlink:</para>
93
94<screen os="l"><userinput>ln -sfv ../usr/bin/cpp ${CLFS}/lib</userinput></screen>
95
96    <para os="m">Many packages use the name <command>cc</command> to call the C
97    compiler. To satisfy those packages, create a symlink:</para>
98
99<screen os="o"><userinput>ln -sfv gcc ${CLFS}/usr/bin/cc</userinput></screen>
100
101  </sect2>
102
103  <sect2 id="contents-gcc" role="content">
104    <title>Contents of GCC</title>
105
106    <segmentedlist>
107      <segtitle>Installed programs</segtitle>
108      <segtitle>Installed libraries</segtitle>
109
110      <seglistitem>
111        <seg>c++, cc (link to gcc), cpp, g++, gcc, gccbug, and gcov</seg>
112        <seg>libgcc.a, libgcc_eh.a, libgcc_s.so, libgomp.[a,so], libmudflap.[a,so],
113        libmudflapth.[a,so], libssp.[a,so], libstdc++.[a,so], and
114        libsupc++.a</seg>
115      </seglistitem>
116    </segmentedlist>
117
118    <variablelist>
119      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
120      <?dbfo list-presentation="list"?>
121      <?dbhtml list-presentation="table"?>
122
123      <varlistentry id="cc">
124        <term><command>cc</command></term>
125        <listitem>
126          <para>The C compiler</para>
127          <indexterm zone="ch-system-gcc cc">
128            <primary sortas="b-cc">cc</primary>
129          </indexterm>
130        </listitem>
131      </varlistentry>
132
133      <varlistentry id="cpp">
134        <term><command>cpp</command></term>
135        <listitem>
136          <para>The C preprocessor; it is used by the compiler to expand the
137          #include, #define, and similar statements in the source files</para>
138          <indexterm zone="ch-system-gcc cpp">
139            <primary sortas="b-cpp">cpp</primary>
140          </indexterm>
141        </listitem>
142      </varlistentry>
143
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">
149            <primary sortas="b-c++">c++</primary>
150          </indexterm>
151        </listitem>
152      </varlistentry>
153
154      <varlistentry id="g">
155        <term><command>g++</command></term>
156        <listitem>
157          <para>The C++ compiler</para>
158          <indexterm zone="ch-system-gcc g">
159            <primary sortas="b-g++">g++</primary>
160          </indexterm>
161        </listitem>
162      </varlistentry>
163
164      <varlistentry id="gcc">
165        <term><command>gcc</command></term>
166        <listitem>
167          <para>The C compiler</para>
168          <indexterm zone="ch-system-gcc gcc">
169            <primary sortas="b-gcc">gcc</primary>
170          </indexterm>
171        </listitem>
172      </varlistentry>
173
174      <varlistentry id="gccbug">
175        <term><command>gccbug</command></term>
176        <listitem>
177          <para>A shell script used to help create useful bug reports</para>
178          <indexterm zone="ch-system-gcc gccbug">
179            <primary sortas="b-gccbug">gccbug</primary>
180          </indexterm>
181        </listitem>
182      </varlistentry>
183
184      <varlistentry id="gcov">
185        <term><command>gcov</command></term>
186        <listitem>
187          <para>A coverage testing tool; it is used to analyze programs to
188          determine where optimizations will have the most effect</para>
189          <indexterm zone="ch-system-gcc gcov">
190            <primary sortas="b-gcov">gcov</primary>
191          </indexterm>
192        </listitem>
193      </varlistentry>
194
195      <varlistentry id="libgcc">
196        <term><filename class="libraryfile">libgcc</filename></term>
197        <listitem>
198          <para>Contains run-time support for <command>gcc</command></para>
199          <indexterm zone="ch-system-gcc libgcc">
200            <primary sortas="c-libgcc*">libgcc*</primary>
201          </indexterm>
202        </listitem>
203      </varlistentry>
204
205      <varlistentry id="libmudflap">
206        <term><filename class="libraryfile">libmudflap</filename></term>
207        <listitem>
208          <para>The libmudflap libraries are used by GCC for instrumenting
209          pointer and array dereferencing operations.</para>
210          <indexterm zone="ch-system-gcc libmudflap">
211            <primary sortas="c-libmudflap*">libmudflap*</primary>
212          </indexterm>
213        </listitem>
214      </varlistentry>
215
216      <varlistentry id="libstdc">
217        <term><filename class="libraryfile">libstdc++</filename></term>
218        <listitem>
219          <para>The standard C++ library</para>
220          <indexterm zone="ch-system-gcc libstdc">
221            <primary sortas="c-libstdc++">libstdc++</primary>
222          </indexterm>
223        </listitem>
224      </varlistentry>
225
226      <varlistentry id="libsupc">
227        <term><filename class="libraryfile">libsupc++</filename></term>
228        <listitem>
229          <para>Provides supporting routines for the C++ programming
230          language</para>
231          <indexterm zone="ch-system-gcc libsupc">
232            <primary sortas="c-libsupc++">libsupc++</primary>
233          </indexterm>
234        </listitem>
235      </varlistentry>
236
237    </variablelist>
238
239  </sect2>
240
241</sect1>
Note: See TracBrowser for help on using the repository browser.