source: chapter05/gcc-pass1.xml@ b59b371

xry111/clfs-ng
Last change on this file since b59b371 was 98755ac, checked in by Xi Ruoyao <xry111@…>, 18 months ago

Merge remote-tracking branch 'origin/trunk' into xry111/clfs-ng

  • Property mode set to 100644
File size: 8.3 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-tools-gcc-pass1" role="wrap" xreflabel="gcc-pass1">
9 <?dbhtml filename="gcc-pass1.html"?>
10
11 <sect1info condition="script">
12 <productname>gcc-pass1</productname>
13 <productnumber>&gcc-version;</productnumber>
14 <address>&gcc-url;</address>
15 </sect1info>
16
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/>
26
27 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
28 href="../chapter08/gcc.xml"
29 xpointer="xpointer(/sect1/sect2[1]/para[1])"/>
30
31 <segmentedlist>
32 <segtitle>&buildtime;</segtitle>
33 <segtitle>&diskspace;</segtitle>
34
35 <seglistitem>
36 <seg>&gcc-tmpp1-sbu;</seg>
37 <seg>&gcc-tmpp1-du;</seg>
38 </seglistitem>
39 </segmentedlist>
40
41 </sect2>
42
43 <sect2 role="installation">
44 <title>Installation of Cross GCC</title>
45
46 <para>GCC requires the GMP, MPFR and MPC packages. As these packages may
47 not be included in your host distribution, they will be built with
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>
51
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-&gcc-version; 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
58<screen><userinput remap="pre">tar -xf ../mpfr-&mpfr-version;.tar.xz
59mv -v mpfr-&mpfr-version; mpfr
60tar -xf ../gmp-&gmp-version;.tar.xz
61mv -v gmp-&gmp-version; gmp
62tar -xf ../mpc-&mpc-version;.tar.gz
63mv -v mpc-&mpc-version; mpc</userinput></screen>
64
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>
72
73 <para>The GCC documentation recommends building GCC
74 in a dedicated build directory:</para>
75
76<screen><userinput remap="pre">mkdir -v build
77cd build</userinput></screen>
78
79 <para>Prepare GCC for compilation:</para>
80
81<screen><userinput remap="configure">../configure \
82 --target=$LFS_TGT \
83 --prefix=$LFS/tools \
84 --with-glibc-version=&glibc-version; \
85 --with-sysroot=$LFS \
86 --with-newlib \
87 --without-headers \
88 --enable-default-pie \
89 --enable-default-ssp \
90 --disable-nls \
91 --disable-shared \
92 --disable-multilib \
93 --disable-decimal-float \
94 --disable-threads \
95 --disable-libatomic \
96 --disable-libgomp \
97 --disable-libquadmath \
98 --disable-libssp \
99 --disable-libvtv \
100 --disable-libstdcxx \
101 --enable-languages=c,c++</userinput></screen>
102 <variablelist>
103 <title>The meaning of the configure options:</title>
104
105 <varlistentry>
106 <term><parameter>--with-glibc-version=&glibc-version;</parameter></term>
107 <listitem>
108 <para>This option specifies the version of Glibc which will be
109 used on the target. It is not relevant to the libc of the host
110 distro because everything compiled by pass1 GCC will run in the
111 chroot environment, which is isolated from libc of the host
112 distro.</para>
113 </listitem>
114 </varlistentry>
115
116 <varlistentry>
117 <term><parameter>--with-newlib</parameter></term>
118 <listitem>
119 <para>Since a working C library is not yet available, this ensures
120 that the inhibit_libc constant is defined when building libgcc. This prevents
121 the compiling of any code that requires libc support.</para>
122 </listitem>
123 </varlistentry>
124
125 <varlistentry>
126 <term><parameter>--without-headers</parameter></term>
127 <listitem>
128 <para>When creating a complete cross-compiler, GCC requires
129 standard headers compatible with the target system. For our
130 purposes these headers will not be needed. This switch prevents
131 GCC from looking for them.</para>
132 </listitem>
133 </varlistentry>
134
135 <varlistentry>
136 <term><parameter>--enable-default-pie and
137 --enable-default-ssp</parameter></term>
138 <listitem>
139 <para>Those switches allow GCC to compile programs with
140 some hardening security features (more information on those in
141 the <xref linkend="pie-ssp-info"/> in chapter 8) by default. The
142 are not strictly needed at this stage, since the compiler will
143 only produce temporary executables. But it is cleaner to have the
144 temporary packages be as close as possible to the final ones.
145 </para>
146 </listitem>
147 </varlistentry>
148
149 <varlistentry>
150 <term><parameter>--disable-shared</parameter></term>
151 <listitem>
152 <para>This switch forces GCC to link its internal libraries
153 statically. We need this because the shared libraries require Glibc,
154 which is not yet installed on the target system.</para>
155 </listitem>
156 </varlistentry>
157
158 <varlistentry>
159 <term><parameter>--disable-multilib</parameter></term>
160 <listitem>
161 <para>On x86_64, LFS does not support a multilib configuration.
162 This switch is harmless for x86.</para>
163 </listitem>
164 </varlistentry>
165
166 <varlistentry>
167 <term><parameter>--disable-decimal-float, --disable-threads,
168 --disable-libatomic, --disable-libgomp,
169 --disable-libquadmath, --disable-libssp, --disable-libvtv,
170 --disable-libstdcxx</parameter></term>
171 <listitem>
172 <para>These switches disable support for the decimal floating point
173 extension, threading, libatomic, libgomp, libquadmath, libssp,
174 libvtv, and the C++ standard library respectively. These features
175 will fail to compile when building a cross-compiler and are not
176 necessary for the task of cross-compiling the temporary libc.</para>
177 </listitem>
178 </varlistentry>
179
180 <varlistentry>
181 <term><parameter>--enable-languages=c,c++</parameter></term>
182 <listitem>
183 <para>This option ensures that only the C and C++ compilers are built.
184 These are the only languages needed now.</para>
185 </listitem>
186 </varlistentry>
187
188 </variablelist>
189
190 <para>Compile GCC by running:</para>
191
192<screen><userinput remap="make">make</userinput></screen>
193
194 <para>Install the package:</para>
195
196 <screen><userinput remap="install">make install</userinput></screen>
197
198 <para>This build of GCC has installed a couple of internal system
199 headers. Normally one of them, <filename>limits.h</filename>, would in turn
200 include the corresponding system <filename>limits.h</filename> header, in
201 this case, <filename>$LFS/usr/include/limits.h</filename>. However, at the
202 time of this build of GCC <filename>$LFS/usr/include/limits.h</filename>
203 does not exist, so the internal header that has just been installed is a
204 partial, self-contained file and does not include the extended features of
205 the system header. This is adequate for building Glibc, but the full
206 internal header will be needed later. Create a full version of the internal
207 header using a command that is identical to what the GCC build system does
208 in normal circumstances:</para>
209
210<screen><userinput remap="install">cd ..
211cat gcc/limitx.h gcc/glimits.h gcc/limity.h > \
212 `dirname $($LFS_TGT-gcc -print-libgcc-file-name)`/install-tools/include/limits.h</userinput></screen>
213 </sect2>
214
215 <sect2 role="content">
216 <title/>
217
218 <para>Details on this package are located in
219 <xref linkend="contents-gcc" role="."/></para>
220
221 </sect2>
222
223</sect1>
Note: See TracBrowser for help on using the repository browser.