2004-01-12 23:23:50 +00:00
|
|
|
<sect1 id="ch06-gcc" xreflabel="GCC">
|
2001-07-23 19:23:43 +01:00
|
|
|
<title>Installing GCC-&gcc-version;</title>
|
2001-09-26 01:24:04 +01:00
|
|
|
<?dbhtml filename="gcc.html" dir="chapter06"?>
|
2001-01-24 00:31:17 +00:00
|
|
|
|
2004-01-12 23:23:50 +00:00
|
|
|
<para>The GCC package contains the GNU compiler collection, among them
|
|
|
|
the C and C++ compilers.</para>
|
|
|
|
|
2001-07-22 20:45:10 +01:00
|
|
|
<screen>Estimated build time: &gcc-time;
|
2001-08-10 21:29:04 +01:00
|
|
|
Estimated required disk space: &gcc-compsize;</screen>
|
2001-07-17 19:51:18 +01:00
|
|
|
|
2004-01-12 23:23:50 +00:00
|
|
|
<literallayout>Official download location for GCC (&gcc-version;):
|
|
|
|
<ulink url="ftp://ftp.gnu.org/pub/gnu/gcc/"/>
|
|
|
|
And for the GCC No-Fixincludes Patch:
|
|
|
|
<ulink url="&patches-root;&gcc-nofixincludes-patch;"/></literallayout>
|
|
|
|
|
2003-11-15 16:07:18 +00:00
|
|
|
&aa-gcc-dep;
|
2003-11-01 22:31:50 +00:00
|
|
|
|
|
|
|
<sect2><title> </title><para> </para></sect2>
|
|
|
|
|
|
|
|
<sect2>
|
|
|
|
<title>Installation of GCC</title>
|
|
|
|
|
|
|
|
<note><para>The test suite for GCC in this section is considered
|
|
|
|
<emphasis>critical</emphasis>. Our advice is to not skip it under any
|
|
|
|
circumstance.</para></note>
|
|
|
|
|
|
|
|
<para>This package is known to behave badly when you have changed its
|
|
|
|
default optimization flags (including the -march and -mcpu options).
|
|
|
|
Therefore, if you have defined any environment variables that override
|
|
|
|
default optimizations, such as CFLAGS and CXXFLAGS, we recommend unsetting
|
|
|
|
or modifying them when building GCC.</para>
|
|
|
|
|
2003-11-21 03:39:20 +00:00
|
|
|
<para>Unpack the GCC-core <emphasis>and</emphasis> the GCC-g++ tarball -- they
|
2003-11-01 22:31:50 +00:00
|
|
|
will unfold into the same directory. You should likewise extract the
|
|
|
|
GCC-testsuite package. The full GCC package contains even more
|
|
|
|
compilers. Instructions for building these can be found at
|
|
|
|
<ulink url="&blfs-root;view/stable/general/gcc.html"/>.</para>
|
|
|
|
|
2003-11-21 03:39:20 +00:00
|
|
|
<note><para>Be careful <emphasis role="strong">not</emphasis> to apply the GCC
|
2004-01-21 22:15:22 +00:00
|
|
|
Specs patch from <xref linkend="chapter05"/> here.</para></note>
|
2003-11-01 22:31:50 +00:00
|
|
|
|
2003-11-21 03:39:20 +00:00
|
|
|
<para>First apply the No-Fixincludes patch that we also used in the previous
|
|
|
|
chapter:</para>
|
|
|
|
|
|
|
|
<screen><userinput>patch -Np1 -i ../&gcc-nofixincludes-patch;</userinput></screen>
|
|
|
|
|
|
|
|
<para>Now apply a sed substitution that will suppress the installation of
|
|
|
|
<filename>libiberty.a</filename>. We want to use the version of
|
|
|
|
<filename>libiberty.a</filename> provided by Binutils:</para>
|
|
|
|
|
|
|
|
<screen><userinput>sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in</userinput></screen>
|
2003-11-01 22:31:50 +00:00
|
|
|
|
|
|
|
<para>The GCC documentation recommends building GCC outside of the source
|
|
|
|
directory in a dedicated build directory:</para>
|
|
|
|
|
|
|
|
<screen><userinput>mkdir ../gcc-build
|
|
|
|
cd ../gcc-build</userinput></screen>
|
|
|
|
|
|
|
|
<para>Now prepare GCC for compilation:</para>
|
|
|
|
|
|
|
|
<screen><userinput>../gcc-&gcc-version;/configure --prefix=/usr \
|
|
|
|
--enable-shared --enable-threads=posix \
|
|
|
|
--enable-__cxa_atexit --enable-clocale=gnu \
|
|
|
|
--enable-languages=c,c++</userinput></screen>
|
|
|
|
|
|
|
|
<para>Compile the package:</para>
|
|
|
|
|
|
|
|
<screen><userinput>make</userinput></screen>
|
|
|
|
|
|
|
|
<para>Test the results, but don't stop at errors (you'll remember the few
|
|
|
|
known ones):</para>
|
|
|
|
|
|
|
|
<screen><userinput>make -k check</userinput></screen>
|
|
|
|
|
|
|
|
<para>The test suite notes from <xref linkend="ch05-gcc-pass2"/> are still very
|
|
|
|
much appropriate here. Be sure to refer back there should you have any
|
|
|
|
doubts.</para>
|
|
|
|
|
|
|
|
<para>And install the package:</para>
|
|
|
|
|
|
|
|
<screen><userinput>make install</userinput></screen>
|
|
|
|
|
|
|
|
<para>Some packages expect the C PreProcessor to be installed in the
|
|
|
|
<filename>/lib</filename> directory.
|
|
|
|
To honor those packages, create this symlink:</para>
|
|
|
|
|
|
|
|
<screen><userinput>ln -s ../usr/bin/cpp /lib</userinput></screen>
|
|
|
|
|
|
|
|
<para>Many packages use the name <userinput>cc</userinput> to call the C
|
|
|
|
compiler. To satisfy those packages, create a symlink:</para>
|
|
|
|
|
|
|
|
<screen><userinput>ln -s gcc /usr/bin/cc</userinput></screen>
|
|
|
|
|
|
|
|
<note><para>At this point it is strongly recommended to repeat the sanity check
|
|
|
|
we performed earlier in this chapter. Refer back to
|
|
|
|
<xref linkend="ch06-adjustingtoolchain"/> and repeat the check. If the results
|
|
|
|
are wrong, then most likely you erroneously applied the GCC Specs patch from
|
2004-01-21 22:15:22 +00:00
|
|
|
<xref linkend="chapter05"/>.</para></note>
|
2003-11-01 22:31:50 +00:00
|
|
|
|
|
|
|
</sect2>
|
2001-01-24 00:31:17 +00:00
|
|
|
|
2004-01-12 23:23:50 +00:00
|
|
|
&aa-gcc-shortdesc;
|
|
|
|
&aa-gcc-desc;
|
|
|
|
|
2001-01-24 00:31:17 +00:00
|
|
|
</sect1>
|
|
|
|
|