source: chapter05/gcc-pass1.xml@ 54bc22e

xry111/clfs-ng
Last change on this file since 54bc22e was 100ca4e, checked in by Xi Ruoyao <xry111@…>, 2 years ago

Merge branch 'trunk' into xry111/clfs-ng

  • Property mode set to 100644
File size: 7.6 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
[b06ca36]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[673b0d8]4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
[1f7ca93]7
[1067bac]8<sect1 id="ch-tools-gcc-pass1" role="wrap" xreflabel="gcc-pass1">
[1f7ca93]9 <?dbhtml filename="gcc-pass1.html"?>
10
[e747759]11 <sect1info condition="script">
[6070f51]12 <productname>gcc-pass1</productname>
[e747759]13 <productnumber>&gcc-version;</productnumber>
14 <address>&gcc-url;</address>
15 </sect1info>
16
[1f7ca93]17 <title>GCC-&gcc-version; - Pass 1</title>
18
19 <indexterm zone="ch-tools-gcc-pass1">
20 <primary sortas="a-GCC">GCC</primary>
21 <secondary>tools, pass 1</secondary>
22 </indexterm>
23
24 <sect2 role="package">
25 <title/>
[bc82645e]26
[d9441360]27 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[fcc02767]28 href="../chapter08/gcc.xml"
[1f7ca93]29 xpointer="xpointer(/sect1/sect2[1]/para[1])"/>
[81fd230]30
[1f7ca93]31 <segmentedlist>
32 <segtitle>&buildtime;</segtitle>
33 <segtitle>&diskspace;</segtitle>
[5888299]34
[1f7ca93]35 <seglistitem>
[fb386e0]36 <seg>&gcc-tmpp1-sbu;</seg>
37 <seg>&gcc-tmpp1-du;</seg>
[1f7ca93]38 </seglistitem>
39 </segmentedlist>
[673b0d8]40
[1f7ca93]41 </sect2>
[73aedd1d]42
[1f7ca93]43 <sect2 role="installation">
[4e82d47]44 <title>Installation of Cross GCC</title>
[73aedd1d]45
[efcb393]46 <para>GCC requires the GMP, MPFR and MPC packages. As these packages may
[6cc0516]47 not be included in your host distribution, they will be built with
[95c681a]48 GCC. Unpack each package into the GCC source directory and rename the
49 resulting directories so the GCC build procedures will automatically
50 use them:</para>
[6cc0516]51
[3380af3]52 <note><para>There are frequent misunderstandings about this chapter. The
53 procedures are the same as every other chapter as explained earlier (<xref
54 linkend='buildinstr'/>). First extract the gcc tarball from the sources
55 directory and then change to the directory created. Only then should you
56 proceed with the instructions below.</para></note>
57
[ee648fd]58<screen><userinput remap="pre">tar -xf ../mpfr-&mpfr-version;.tar.xz
[e311865]59mv -v mpfr-&mpfr-version; mpfr
[ee648fd]60tar -xf ../gmp-&gmp-version;.tar.xz
[b2f3f15]61mv -v gmp-&gmp-version; gmp
[ee648fd]62tar -xf ../mpc-&mpc-version;.tar.gz
[4916842]63mv -v mpc-&mpc-version; mpc</userinput></screen>
[6cc0516]64
[30ae09bb]65 <para>For x86_64 target, set the default directory name for
66 64-bit libraries to <quote>lib</quote>. The command is unnecessary,
67 but harmless for 32-bit x86. If you are building for another target,
68 you may need to adjust the command for your target.</para>
69
70<screen><userinput remap="pre">sed -e '/m64=/s/lib64/lib/' \
71 -i.orig gcc/config/i386/t-linux64</userinput></screen>
[be3d9f3]72
[a26f29f]73 <para>The GCC documentation recommends building GCC
[f1dd547]74 in a dedicated build directory:</para>
[3d36131c]75
[f1dd547]76<screen><userinput remap="pre">mkdir -v build
77cd build</userinput></screen>
[73aedd1d]78
[1f7ca93]79 <para>Prepare GCC for compilation:</para>
[73aedd1d]80
[43b6ecd]81<screen><userinput remap="configure">../configure \
82 --target=$LFS_TGT \
83 --prefix=$LFS/tools \
[0fc98a0]84 --with-glibc-version=&glibc-version; \
[43b6ecd]85 --with-sysroot=$LFS \
86 --with-newlib \
87 --without-headers \
88 --disable-nls \
89 --disable-shared \
90 --disable-multilib \
91 --disable-decimal-float \
92 --disable-threads \
93 --disable-libatomic \
94 --disable-libgomp \
95 --disable-libquadmath \
96 --disable-libssp \
97 --disable-libvtv \
98 --disable-libstdcxx \
[8aa7fde]99 --enable-languages=c,c++</userinput></screen>
[1f7ca93]100 <variablelist>
101 <title>The meaning of the configure options:</title>
102
[d876f0e]103 <varlistentry>
[0fc98a0]104 <term><parameter>--with-glibc-version=&glibc-version;</parameter></term>
[d876f0e]105 <listitem>
[0fc98a0]106 <para>This option specifies the version of glibc which will be
[d6006ef]107 used on the target. It is not relevant to the libc of the host
108 distro because everything compiled by pass1 gcc will run in the
109 chroot environment, which is isolated from libc of the host
110 distro.</para>
[d876f0e]111 </listitem>
112 </varlistentry>
113
[1a3e6a3]114 <varlistentry>
115 <term><parameter>--with-newlib</parameter></term>
116 <listitem>
117 <para>Since a working C library is not yet available, this ensures
118 that the inhibit_libc constant is defined when building libgcc. This prevents
119 the compiling of any code that requires libc support.</para>
120 </listitem>
121 </varlistentry>
122
123 <varlistentry>
124 <term><parameter>--without-headers</parameter></term>
125 <listitem>
126 <para>When creating a complete cross-compiler, GCC requires
127 standard headers compatible with the target system. For our
128 purposes these headers will not be needed. This switch prevents
129 GCC from looking for them.</para>
130 </listitem>
[79524a0]131 </varlistentry>
132
[1f7ca93]133 <varlistentry>
[0eb90658]134 <term><parameter>--disable-shared</parameter></term>
[1f7ca93]135 <listitem>
[c49647b1]136 <para>This switch forces GCC to link its internal libraries
[79524a0]137 statically. We need this because the shared libraries require glibc,
138 which is not yet installed on the target system.</para>
139 </listitem>
140 </varlistentry>
141
142 <varlistentry>
143 <term><parameter>--disable-multilib</parameter></term>
144 <listitem>
145 <para>On x86_64, LFS does not support a multilib configuration.
146 This switch is harmless for x86.</para>
[1f7ca93]147 </listitem>
148 </varlistentry>
149
[182d5d3]150 <varlistentry>
[908077d]151 <term><parameter>--disable-decimal-float, --disable-threads,
[a26f29f]152 --disable-libatomic, --disable-libgomp,
[42130d6]153 --disable-libquadmath, --disable-libssp, --disable-libvtv,
154 --disable-libstdcxx</parameter></term>
[182d5d3]155 <listitem>
[8aad4385]156 <para>These switches disable support for the decimal floating point
[79524a0]157 extension, threading, libatomic, libgomp, libquadmath, libssp,
[05a0344]158 libvtv, and the C++ standard library respectively. These features
159 will fail to compile when building a cross-compiler and are not
160 necessary for the task of cross-compiling the temporary libc.</para>
[182d5d3]161 </listitem>
162 </varlistentry>
163
[6e88633]164 <varlistentry>
[908077d]165 <term><parameter>--enable-languages=c,c++</parameter></term>
[6e88633]166 <listitem>
[908077d]167 <para>This option ensures that only the C and C++ compilers are built.
168 These are the only languages needed now.</para>
[6e88633]169 </listitem>
170 </varlistentry>
171
[1f7ca93]172 </variablelist>
173
[4e82d47]174 <para>Compile GCC by running:</para>
[b0a4c9a]175
[0445a3d]176<screen><userinput remap="make">make</userinput></screen>
[81fd230]177
[1f7ca93]178 <para>Install the package:</para>
[73aedd1d]179
[efcb393]180 <screen><userinput remap="install">make install</userinput></screen>
181
182 <para>This build of GCC has installed a couple of internal system
183 headers. Normally one of them, <filename>limits.h</filename>, would in turn
184 include the corresponding system <filename>limits.h</filename> header, in
185 this case, <filename>$LFS/usr/include/limits.h</filename>. However, at the
[77d2cd8d]186 time of this build of GCC <filename>$LFS/usr/include/limits.h</filename>
[efcb393]187 does not exist, so the internal header that has just been installed is a
188 partial, self-contained file and does not include the extended features of
189 the system header. This is adequate for building glibc, but the full
190 internal header will be needed later. Create a full version of the internal
191 header using a command that is identical to what the GCC build system does
192 in normal circumstances:</para>
193
194<screen><userinput remap="install">cd ..
195cat gcc/limitx.h gcc/glimits.h gcc/limity.h > \
196 `dirname $($LFS_TGT-gcc -print-libgcc-file-name)`/install-tools/include/limits.h</userinput></screen>
[1f7ca93]197 </sect2>
[bc82645e]198
[1f7ca93]199 <sect2 role="content">
200 <title/>
[81fd230]201
[1f7ca93]202 <para>Details on this package are located in
203 <xref linkend="contents-gcc" role="."/></para>
[81fd230]204
[1f7ca93]205 </sect2>
206
207</sect1>
Note: See TracBrowser for help on using the repository browser.