2004-05-03 11:59:46 +01:00
|
|
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
2007-03-21 18:42:58 +00:00
|
|
|
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
|
|
|
|
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
|
2004-05-03 11:59:46 +01:00
|
|
|
<!ENTITY % general-entities SYSTEM "../general.ent">
|
|
|
|
%general-entities;
|
|
|
|
]>
|
2006-01-20 21:02:23 +00:00
|
|
|
|
2004-05-16 01:06:08 +01:00
|
|
|
<sect1 id="ch-tools-gcc-pass2" role="wrap">
|
2006-01-20 21:02:23 +00:00
|
|
|
<?dbhtml filename="gcc-pass2.html"?>
|
|
|
|
|
2007-09-07 20:16:43 +01:00
|
|
|
<sect1info condition="script">
|
|
|
|
<productname>gcc</productname>
|
|
|
|
<productnumber>&gcc-version;</productnumber>
|
|
|
|
<address>&gcc-url;</address>
|
|
|
|
</sect1info>
|
|
|
|
|
2006-01-20 21:02:23 +00:00
|
|
|
<title>GCC-&gcc-version; - Pass 2</title>
|
|
|
|
|
|
|
|
<indexterm zone="ch-tools-gcc-pass2">
|
|
|
|
<primary sortas="a-GCC">GCC</primary>
|
|
|
|
<secondary>tools, pass 2</secondary>
|
|
|
|
</indexterm>
|
|
|
|
|
|
|
|
<sect2 role="package">
|
|
|
|
<title/>
|
2003-05-02 19:20:20 +01:00
|
|
|
|
2010-04-21 21:16:28 +01:00
|
|
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
2006-01-20 21:02:23 +00:00
|
|
|
href="../chapter06/gcc.xml"
|
|
|
|
xpointer="xpointer(/sect1/sect2[1]/para[1])"/>
|
2005-02-19 22:16:42 +00:00
|
|
|
|
2006-01-20 21:02:23 +00:00
|
|
|
<segmentedlist>
|
|
|
|
<segtitle>&buildtime;</segtitle>
|
|
|
|
<segtitle>&diskspace;</segtitle>
|
2003-11-01 22:31:50 +00:00
|
|
|
|
2006-01-20 21:02:23 +00:00
|
|
|
<seglistitem>
|
2006-05-14 21:16:56 +01:00
|
|
|
<seg>&gcc-ch5p2-sbu;</seg>
|
|
|
|
<seg>&gcc-ch5p2-du;</seg>
|
2006-01-20 21:02:23 +00:00
|
|
|
</seglistitem>
|
|
|
|
</segmentedlist>
|
2003-11-01 22:31:50 +00:00
|
|
|
|
2006-01-20 21:02:23 +00:00
|
|
|
</sect2>
|
2004-05-16 01:06:08 +01:00
|
|
|
|
2006-01-20 21:02:23 +00:00
|
|
|
<sect2 role="installation">
|
2008-12-05 20:46:02 +00:00
|
|
|
<title>Installation of GCC</title>
|
2003-11-01 22:31:50 +00:00
|
|
|
|
2012-04-25 20:26:21 +01:00
|
|
|
<para>Our first build of GCC has installed a couple of internal system
|
|
|
|
headers. Normally one of them, <filename>limits.h</filename> will in turn
|
|
|
|
include the corresponding system <filename>limits.h</filename> header, in
|
|
|
|
this case, <filename>/tools/include/limits.h</filename>. However, at the
|
|
|
|
time of the first build of gcc <filename>/tools/include/limits.h</filename>
|
|
|
|
did not exist, so the internal header that GCC installed is a partial,
|
|
|
|
self-contained file and does not include the extended features of the
|
|
|
|
system header. This was adequate for building the temporary libc, but this
|
|
|
|
build of GCC now requires the full internal header. Create a full version
|
|
|
|
of the internal header using a command that is identical to what the GCC
|
|
|
|
build system does in normal circumstances:</para>
|
|
|
|
|
|
|
|
<screen><userinput remap="pre">cat gcc/limitx.h gcc/glimits.h gcc/limity.h > \
|
|
|
|
`dirname $($LFS_TGT-gcc -print-libgcc-file-name)`/include-fixed/limits.h</userinput></screen>
|
2003-11-01 22:31:50 +00:00
|
|
|
|
2009-05-17 04:20:56 +01:00
|
|
|
<para>For x86 machines, a bootstrap build of GCC uses the
|
|
|
|
<option>-fomit-frame-pointer</option> compiler flag. Non-bootstrap builds
|
|
|
|
omit this flag by default, and the goal should be to produce a compiler
|
|
|
|
that is exactly the same as if it were bootstrapped. Apply the following
|
2013-02-11 20:09:22 +00:00
|
|
|
<command>sed</command> command to force the build to use the flag:</para>
|
2005-09-09 21:34:44 +01:00
|
|
|
|
2007-09-18 22:11:00 +01:00
|
|
|
<screen><userinput remap="pre">cp -v gcc/Makefile.in{,.tmp}
|
2009-07-06 07:54:06 +01:00
|
|
|
sed 's/^T_CFLAGS =$/& -fomit-frame-pointer/' gcc/Makefile.in.tmp \
|
2006-01-20 21:02:23 +00:00
|
|
|
> gcc/Makefile.in</userinput></screen>
|
2005-09-09 21:34:44 +01:00
|
|
|
|
2012-04-25 20:26:21 +01:00
|
|
|
<para>Once again, change the location of GCC's default dynamic linker to
|
|
|
|
use the one installed in <filename
|
|
|
|
class="directory">/tools</filename>.</para>
|
2007-09-15 21:45:13 +01:00
|
|
|
|
2008-12-03 22:46:04 +00:00
|
|
|
<screen><userinput remap="pre">for file in \
|
|
|
|
$(find gcc/config -name linux64.h -o -name linux.h -o -name sysv4.h)
|
2007-09-15 21:45:13 +01:00
|
|
|
do
|
|
|
|
cp -uv $file{,.orig}
|
|
|
|
sed -e 's@/lib\(64\)\?\(32\)\?/ld@/tools&@g' \
|
|
|
|
-e 's@/usr@/tools@g' $file.orig > $file
|
2008-12-05 20:46:02 +00:00
|
|
|
echo '
|
2012-03-26 21:28:15 +01:00
|
|
|
#undef STANDARD_STARTFILE_PREFIX_1
|
|
|
|
#undef STANDARD_STARTFILE_PREFIX_2
|
2012-04-25 20:26:21 +01:00
|
|
|
#define STANDARD_STARTFILE_PREFIX_1 "/tools/lib/"
|
2008-12-05 20:46:02 +00:00
|
|
|
#define STANDARD_STARTFILE_PREFIX_2 ""' >> $file
|
2007-09-15 21:45:13 +01:00
|
|
|
touch $file.orig
|
|
|
|
done</userinput></screen>
|
|
|
|
|
2010-04-20 21:08:12 +01:00
|
|
|
<para>As in the first build of GCC it requires the GMP, MPFR and MPC
|
|
|
|
packages. Unpack the tarballs and move them into the required directory
|
|
|
|
names:</para>
|
2008-10-13 14:32:41 +01:00
|
|
|
|
2012-07-13 20:54:26 +01:00
|
|
|
<screen><userinput remap="pre">tar -Jxf ../mpfr-&mpfr-version;.tar.xz
|
2009-05-24 00:00:57 +01:00
|
|
|
mv -v mpfr-&mpfr-version; mpfr
|
2012-01-28 11:47:06 +00:00
|
|
|
tar -Jxf ../gmp-&gmp-version;.tar.xz
|
2010-04-20 21:08:12 +01:00
|
|
|
mv -v gmp-&gmp-version; gmp
|
|
|
|
tar -zxf ../mpc-&mpc-version;.tar.gz
|
|
|
|
mv -v mpc-&mpc-version; mpc</userinput></screen>
|
2008-10-13 14:32:41 +01:00
|
|
|
|
2006-01-20 21:02:23 +00:00
|
|
|
<para>Create a separate build directory again:</para>
|
2003-11-01 22:31:50 +00:00
|
|
|
|
2007-09-18 22:11:00 +01:00
|
|
|
<screen><userinput remap="pre">mkdir -v ../gcc-build
|
2003-11-01 22:31:50 +00:00
|
|
|
cd ../gcc-build</userinput></screen>
|
|
|
|
|
2006-01-20 21:02:23 +00:00
|
|
|
<para>Before starting to build GCC, remember to unset any environment
|
|
|
|
variables that override the default optimization flags.</para>
|
2005-02-19 22:16:42 +00:00
|
|
|
|
2006-01-20 21:02:23 +00:00
|
|
|
<para>Now prepare GCC for compilation:</para>
|
2003-11-01 22:31:50 +00:00
|
|
|
|
2013-06-30 23:28:30 +01:00
|
|
|
<screen><userinput remap="configure">CC=$LFS_TGT-gcc \
|
2013-03-29 19:50:55 +00:00
|
|
|
CXX=$LFS_TGT-g++ \
|
|
|
|
AR=$LFS_TGT-ar \
|
|
|
|
RANLIB=$LFS_TGT-ranlib \
|
|
|
|
../gcc-&gcc-version;/configure \
|
|
|
|
--prefix=/tools \
|
|
|
|
--with-local-prefix=/tools \
|
|
|
|
--with-native-system-header-dir=/tools/include \
|
|
|
|
--enable-clocale=gnu \
|
|
|
|
--enable-shared \
|
|
|
|
--enable-threads=posix \
|
|
|
|
--enable-__cxa_atexit \
|
|
|
|
--enable-languages=c,c++ \
|
|
|
|
--disable-libstdcxx-pch \
|
|
|
|
--disable-multilib \
|
|
|
|
--disable-bootstrap \
|
|
|
|
--disable-libgomp \
|
2011-10-28 20:42:21 +01:00
|
|
|
--with-mpfr-include=$(pwd)/../gcc-&gcc-version;/mpfr/src \
|
|
|
|
--with-mpfr-lib=$(pwd)/mpfr/src/.libs</userinput></screen>
|
2003-11-01 22:31:50 +00:00
|
|
|
|
2006-01-20 21:02:23 +00:00
|
|
|
<variablelist>
|
|
|
|
<title>The meaning of the new configure options:</title>
|
|
|
|
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>--enable-clocale=gnu</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>This option ensures the correct locale model is selected
|
|
|
|
for the C++ libraries under all circumstances. If the configure
|
|
|
|
script finds the <emphasis>de_DE</emphasis> locale installed,
|
|
|
|
it will select the correct gnu locale model. However, if the
|
|
|
|
<emphasis>de_DE</emphasis> locale is not installed, there is the
|
|
|
|
risk of building Application Binary Interface (ABI)-incompatible
|
|
|
|
C++ libraries because the incorrect generic locale model may be
|
|
|
|
selected.</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>--enable-threads=posix</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>This enables C++ exception handling for multi-threaded code.</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>--enable-__cxa_atexit</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>This option allows use of <function>__cxa_atexit</function>,
|
|
|
|
rather than <function>atexit</function>, to register C++ destructors
|
|
|
|
for local statics and global objects. This option is essential for
|
|
|
|
fully standards-compliant handling of destructors. It also affects
|
|
|
|
the C++ ABI, and therefore results in C++ shared libraries and C++
|
|
|
|
programs that are interoperable with other Linux distributions.</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>--enable-languages=c,c++</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>This option ensures that both the C and C++ compilers are
|
|
|
|
built.</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>--disable-libstdcxx-pch</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>Do not build the pre-compiled header (PCH) for
|
|
|
|
<filename class="libraryfile">libstdc++</filename>. It takes up a
|
|
|
|
lot of space, and we have no use for it.</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
2007-09-15 21:45:13 +01:00
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>--disable-bootstrap</parameter></term>
|
|
|
|
<listitem>
|
2009-07-18 13:42:44 +01:00
|
|
|
<para>For native builds of GCC, the default is to do a "bootstrap"
|
|
|
|
build. This does not just compile GCC, but compiles it several times.
|
|
|
|
It uses the programs compiled in a first round to compile itself a
|
2009-05-17 04:20:56 +01:00
|
|
|
second time, and then again a third time. The second and third
|
|
|
|
iterations are compared to make sure it can reproduce itself
|
|
|
|
flawlessly. This also implies that it was compiled correctly.
|
|
|
|
However, the LFS build method should provide a solid compiler
|
2013-02-11 20:09:22 +00:00
|
|
|
without the need to bootstrap each time.</para>
|
2007-09-15 21:45:13 +01:00
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
2006-01-20 21:02:23 +00:00
|
|
|
</variablelist>
|
|
|
|
|
|
|
|
<para>Compile the package:</para>
|
2003-11-01 22:31:50 +00:00
|
|
|
|
2010-09-06 20:01:49 +01:00
|
|
|
<screen><userinput remap="make">make</userinput></screen>
|
2003-11-01 22:31:50 +00:00
|
|
|
|
2006-01-20 21:02:23 +00:00
|
|
|
<para>Install the package:</para>
|
2003-11-01 22:31:50 +00:00
|
|
|
|
2007-09-18 22:11:00 +01:00
|
|
|
<screen><userinput remap="install">make install</userinput></screen>
|
2003-11-01 22:31:50 +00:00
|
|
|
|
2008-12-05 20:46:02 +00:00
|
|
|
<para>As a finishing touch, create a symlink. Many programs and scripts
|
|
|
|
run <command>cc</command> instead of <command>gcc</command>, which is
|
|
|
|
used to keep programs generic and therefore usable on all kinds of UNIX
|
|
|
|
systems where the GNU C compiler is not always installed. Running
|
|
|
|
<command>cc</command> leaves the system administrator free to decide
|
|
|
|
which C compiler to install:</para>
|
|
|
|
|
2012-10-02 23:40:39 +01:00
|
|
|
<screen><userinput remap="install">ln -sv gcc /tools/bin/cc</userinput></screen>
|
2008-12-05 20:46:02 +00:00
|
|
|
|
|
|
|
<caution>
|
|
|
|
<para>At this point, it is imperative to stop and ensure that the basic
|
|
|
|
functions (compiling and linking) of the new toolchain are working as
|
|
|
|
expected. To perform a sanity check, run the following commands:</para>
|
|
|
|
|
|
|
|
<screen><userinput>echo 'main(){}' > dummy.c
|
|
|
|
cc dummy.c
|
|
|
|
readelf -l a.out | grep ': /tools'</userinput></screen>
|
|
|
|
|
|
|
|
<para>If everything is working correctly, there should be no errors,
|
|
|
|
and the output of the last command will be of the form:</para>
|
|
|
|
|
2009-07-12 17:48:19 +01:00
|
|
|
<screen><computeroutput>[Requesting program interpreter: /tools/lib/ld-linux.so.2]</computeroutput></screen>
|
2008-12-05 20:46:02 +00:00
|
|
|
|
|
|
|
<para>Note that <filename class="directory">/tools/lib</filename>, or
|
|
|
|
<filename class="directory">/tools/lib64</filename> for 64-bit machines
|
|
|
|
appears as the prefix of the dynamic linker.</para>
|
|
|
|
|
|
|
|
<para>If the output is not shown as above or there was no output at all,
|
|
|
|
then something is wrong. Investigate and retrace the steps to find out
|
|
|
|
where the problem is and correct it. This issue must be resolved before
|
|
|
|
continuing on. First, perform the sanity check again, using
|
|
|
|
<command>gcc</command> instead of <command>cc</command>. If this works,
|
|
|
|
then the <filename class="symlink">/tools/bin/cc</filename> symlink is
|
|
|
|
missing. Install the symlink as per above.
|
|
|
|
Next, ensure that the <envar>PATH</envar> is correct. This
|
|
|
|
can be checked by running <command>echo $PATH</command> and verifying that
|
|
|
|
<filename class="directory">/tools/bin</filename> is at the head of the
|
|
|
|
list. If the <envar>PATH</envar> is wrong it could mean that you are not
|
|
|
|
logged in as user <systemitem class="username">lfs</systemitem> or that
|
|
|
|
something went wrong back in <xref linkend="ch-tools-settingenviron"
|
|
|
|
role="."/></para>
|
|
|
|
|
|
|
|
<para>Once all is well, clean up the test files:</para>
|
|
|
|
|
|
|
|
<screen><userinput>rm -v dummy.c a.out</userinput></screen>
|
|
|
|
|
|
|
|
</caution>
|
2003-11-01 22:31:50 +00:00
|
|
|
|
2006-01-20 21:02:23 +00:00
|
|
|
</sect2>
|
2003-05-02 19:20:20 +01:00
|
|
|
|
2006-01-20 21:02:23 +00:00
|
|
|
<sect2 role="content">
|
|
|
|
<title/>
|
2005-02-19 22:16:42 +00:00
|
|
|
|
2006-01-20 21:02:23 +00:00
|
|
|
<para>Details on this package are located in
|
|
|
|
<xref linkend="contents-gcc" role="."/></para>
|
2005-02-19 22:16:42 +00:00
|
|
|
|
2006-01-20 21:02:23 +00:00
|
|
|
</sect2>
|
|
|
|
|
|
|
|
</sect1>
|