2003-01-15 16:06:56 +00:00
|
|
|
<sect2><title> </title><para> </para></sect2>
|
|
|
|
|
2001-01-24 00:31:17 +00:00
|
|
|
<sect2>
|
|
|
|
<title>Installation of GCC</title>
|
|
|
|
|
2002-04-19 19:27:01 +01:00
|
|
|
<para>This package is known to behave badly when you have changed its
|
|
|
|
default optimization flags (including the -march and -mcpu options). GCC is
|
2002-09-28 22:08:29 +01:00
|
|
|
best left alone. Therefore, if you have defined any environment variables
|
2002-04-19 19:27:01 +01:00
|
|
|
that override default optimizations, such as CFLAGS and CXXFLAGS, we
|
2002-10-07 05:33:47 +01:00
|
|
|
recommend unsetting or modifying them when building GCC. You have
|
2002-04-19 19:27:01 +01:00
|
|
|
been warned.</para>
|
2001-09-05 15:13:36 +01:00
|
|
|
|
2003-01-15 16:06:56 +00:00
|
|
|
<para>We will be building the C and C++ compilers at this time, so you'll
|
|
|
|
need to unpack both the gcc-core and gcc-g++ tarballs. Other compilers are
|
|
|
|
available in the full gcc package; instructions for building them may be
|
|
|
|
found at <ulink url="&blfs-root;view/cvs/general/gcc.html"/>.</para>
|
|
|
|
|
|
|
|
<para>It is recommended by the GCC installation documentation to build GCC
|
|
|
|
in a dedicated directory outside of the source tree. Create the build
|
|
|
|
directory:</para>
|
2001-01-24 00:31:17 +00:00
|
|
|
|
Updated to autoconf-2.57, automake-1.7.2, binutils-2.13.1, e2fsprogs-1.32, gcc-3.2.1, libtool-1.4.3, linux-2.4.20, modutils-2.4.22, procps-3.1.3, sed-4.0.4, texinfo-4.3, util-linux-2.11y. Removed warning about --enable-kernel.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2235 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
2002-12-15 21:32:51 +00:00
|
|
|
<para><screen><userinput>mkdir ../gcc-build &&
|
2003-01-15 16:06:56 +00:00
|
|
|
cd ../gcc-build</userinput></screen></para>
|
|
|
|
|
|
|
|
<para>Prepare GCC to be compiled:</para>
|
|
|
|
|
|
|
|
<para><screen><userinput>../gcc-&gcc-version;/configure --prefix=/usr --enable-shared \
|
2002-10-07 05:33:47 +01:00
|
|
|
--enable-threads=posix --with-slibdir=/lib \
|
2003-01-15 16:06:56 +00:00
|
|
|
--enable-__cxa_atexit --enable-clocale=gnu</userinput></screen></para>
|
|
|
|
|
|
|
|
<para>The meanings of the configure options are:</para>
|
|
|
|
|
|
|
|
<itemizedlist>
|
|
|
|
<listitem><para><userinput>--enable-threads=posix:</userinput> This enables
|
|
|
|
C++ exception handling for multi-threaded code.</para></listitem>
|
|
|
|
|
|
|
|
<listitem><para><userinput>--enable-__cxa_atexit:</userinput> This option
|
|
|
|
will result in C++ shared libraries and C++ programs that are interoperable
|
|
|
|
with other Linux distributions.</para></listitem>
|
|
|
|
|
|
|
|
<listitem><para><userinput>--enable-clocale=gnu:</userinput> There is a risk
|
|
|
|
that some people will build ABI incompatible C++ libraries if they didn't
|
|
|
|
install all of the glibc localedata. Using --enable-clocale=gnu ensures that
|
|
|
|
the "right thing" is done in all cases. If you don't wish to use this option,
|
|
|
|
then at least build the <emphasis>de_DE</emphasis> locale. When GCC finds
|
|
|
|
this specific locale, then the correct locale mode (<emphasis>gnu</emphasis>)
|
|
|
|
is implemented.</para></listitem>
|
|
|
|
</itemizedlist>
|
|
|
|
|
|
|
|
<para>Continue with compiling the package:</para>
|
|
|
|
|
|
|
|
<para><screen><userinput>make bootstrap</userinput></screen></para>
|
|
|
|
|
|
|
|
<para>The <emphasis>bootstrap</emphasis> target doesn't just compile GCC, but
|
|
|
|
it compiles GCC a multiple times. It uses the first compiled programs to
|
|
|
|
compile itself a second and third time to make sure the compiler was compiled
|
|
|
|
properly.</para>
|
|
|
|
|
|
|
|
<para>Finish installing the package:</para>
|
|
|
|
|
|
|
|
<para><screen><userinput>make install</userinput></screen></para>
|
|
|
|
|
|
|
|
<para>Some packages require that the C++ compiler be installed in the
|
|
|
|
<filename>/lib</filename> and <filename>/usr/lib</filename> directories.
|
|
|
|
To honor those packages, create two symlinks:</para>
|
|
|
|
|
|
|
|
<para><screen><userinput>ln -s ../usr/bin/cpp /lib &&
|
|
|
|
ln -s ../bin/cpp /usr/lib</userinput></screen></para>
|
|
|
|
|
|
|
|
<para>Many packages compile using <emphasis>cc</emphasis> as the name for
|
|
|
|
the C compiler. To satisfy those packages, create a <emphasis>cc</emphasis>
|
|
|
|
symlink:</para>
|
|
|
|
|
|
|
|
<para><screen><userinput>ln -s gcc /usr/bin/cc</userinput></screen></para>
|
2001-01-24 00:31:17 +00:00
|
|
|
|
|
|
|
</sect2>
|