source: chapter05/gcc-pass1.xml@ 6070f51

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 6070f51 was 6070f51, checked in by Pierre Labastie <pieere@…>, 5 years ago

Change <productname> tags so that they reflect the dbhtml processing
instruction

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11574 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 10.9 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"
[1f7ca93]28 href="../chapter06/gcc.xml"
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>
[e4a5635]36 <seg>&gcc-ch5p1-sbu;</seg>
37 <seg>&gcc-ch5p1-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
[4916842]46 <para>GCC now 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
[1a3e6a3]65 <para>The following command will change the location of GCC's default
66 dynamic linker to use the one installed in <filename
67 class="directory">/tools</filename>. It also removes <filename
68 class="directory">/usr/include</filename> from GCC's include search path.
69 Issue:</para>
70
[be3d9f3]71<screen><userinput remap="pre">for file in gcc/config/{linux,i386/linux{,64}}.h
[1a3e6a3]72do
73 cp -uv $file{,.orig}
74 sed -e 's@/lib\(64\)\?\(32\)\?/ld@/tools&amp;@g' \
75 -e 's@/usr@/tools@g' $file.orig &gt; $file
76 echo '
77#undef STANDARD_STARTFILE_PREFIX_1
78#undef STANDARD_STARTFILE_PREFIX_2
79#define STANDARD_STARTFILE_PREFIX_1 "/tools/lib/"
80#define STANDARD_STARTFILE_PREFIX_2 ""' &gt;&gt; $file
81 touch $file.orig
82done</userinput></screen>
83
84 <para>In case the above seems hard to follow, let's break it down a bit.
[a05450f]85 First we copy the files <filename>gcc/config/linux.h</filename>,
86 <filename>gcc/config/i386/linux.h</filename>, and
[0d84af1]87 <filename>gcc/config/i368/linux64.h</filename> to a file of
[1a3e6a3]88 the same name but with an added suffix of <quote>.orig</quote>. Then the
89 first sed expression prepends <quote>/tools</quote> to every instance of
90 <quote>/lib/ld</quote>, <quote>/lib64/ld</quote> or
91 <quote>/lib32/ld</quote>, while the second one replaces hard-coded
92 instances of <quote>/usr</quote>. Next, we add our define statements which
93 alter the default startfile prefix to the end of the file. Note that the
94 trailing <quote>/</quote> in <quote>/tools/lib/</quote> is required.
95 Finally, we use <command>touch</command> to update the timestamp on the
96 copied files. When used in conjunction with <command>cp -u</command>, this
97 prevents unexpected changes to the original files in case the commands are
[be3d9f3]98 inadvertently run twice.</para>
99
100 <para>Finally, on x86_64 hosts, set the default directory name for
101 64-bit libraries to <quote>lib</quote>:</para>
102
103<screen><userinput remap="pre">case $(uname -m) in
104 x86_64)
105 sed -e '/m64=/s/lib64/lib/' \
106 -i.orig gcc/config/i386/t-linux64
107 ;;
108esac</userinput></screen>
109
[5f28def]110<!--
[f1c177f]111 <para>GCC doesn't detect stack protection correctly, which causes problems
112 for the build of Glibc-&glibc-version;, so fix that by issuing the following
113 command:</para>
114
115<screen><userinput remap="pre">sed -i '/k prot/agcc_cv_libc_provides_ssp=yes' gcc/configure</userinput></screen>
[5f28def]116-->
117
[238d351]118<!--
[8a8177f9]119 <para>Also fix a problem identified upstream:</para>
120
121<screen><userinput remap="pre">sed -i 's/if \((code.*))\)/if (\1 \&amp;\&amp; \!DEBUG_INSN_P (insn))/' gcc/sched-deps.c</userinput></screen>
[238d351]122-->
[f1dd547]123 <para>The GCC documentation recommends building GCC
124 in a dedicated build directory:</para>
[3d36131c]125
[f1dd547]126<screen><userinput remap="pre">mkdir -v build
127cd build</userinput></screen>
[73aedd1d]128
[1f7ca93]129 <para>Prepare GCC for compilation:</para>
[73aedd1d]130
[f1dd547]131<screen><userinput remap="configure">../configure \
[d0da965a]132 --target=$LFS_TGT \
133 --prefix=/tools \
134 --with-glibc-version=2.11 \
135 --with-sysroot=$LFS \
136 --with-newlib \
137 --without-headers \
138 --with-local-prefix=/tools \
139 --with-native-system-header-dir=/tools/include \
140 --disable-nls \
141 --disable-shared \
142 --disable-multilib \
143 --disable-decimal-float \
144 --disable-threads \
145 --disable-libatomic \
146 --disable-libgomp \
[42130d6]147 --disable-libmpx \
[d0da965a]148 --disable-libquadmath \
149 --disable-libssp \
150 --disable-libvtv \
[05a0344]151 --disable-libstdcxx \
[8aa7fde]152 --enable-languages=c,c++</userinput></screen>
[1f7ca93]153 <variablelist>
154 <title>The meaning of the configure options:</title>
155
[1a3e6a3]156 <varlistentry>
157 <term><parameter>--with-newlib</parameter></term>
158 <listitem>
159 <para>Since a working C library is not yet available, this ensures
160 that the inhibit_libc constant is defined when building libgcc. This prevents
161 the compiling of any code that requires libc support.</para>
162 </listitem>
163 </varlistentry>
164
165 <varlistentry>
166 <term><parameter>--without-headers</parameter></term>
167 <listitem>
168 <para>When creating a complete cross-compiler, GCC requires
169 standard headers compatible with the target system. For our
170 purposes these headers will not be needed. This switch prevents
171 GCC from looking for them.</para>
172 </listitem>
173 </varlistentry>
174
175 <varlistentry>
176 <term><parameter>--with-local-prefix=/tools</parameter></term>
177 <listitem>
178 <para>The local prefix is the location in the system that GCC will search
179 for locally installed include files. The default is <filename>/usr/local</filename>.
180 Setting this to <filename>/tools</filename> helps keep the host location of
181 <filename>/usr/local</filename> out of this GCC's search path.</para>
182 </listitem>
183 </varlistentry>
184
185 <varlistentry>
186 <term><parameter>--with-native-system-header-dir=/tools/include</parameter></term>
187 <listitem>
[0d84af1]188 <para>By default GCC searches <filename>/usr/include</filename> for
189 system headers. In conjunction with the sysroot switch, this would
190 normally translate to <filename>$LFS/usr/include</filename>. However
191 the headers that will be installed in the next two sections will go
192 to <filename>$LFS/tools/include</filename>. This switch ensures that
193 gcc will find them correctly. In the second pass of GCC, this same
194 switch will ensure that no headers from the host system are
195 found.</para>
[1a3e6a3]196 </listitem>
197 </varlistentry>
198
[1f7ca93]199 <varlistentry>
[0eb90658]200 <term><parameter>--disable-shared</parameter></term>
[1f7ca93]201 <listitem>
[c49647b1]202 <para>This switch forces GCC to link its internal libraries
[0eb90658]203 statically. We do this to avoid possible issues with the host
204 system.</para>
[1f7ca93]205 </listitem>
206 </varlistentry>
207
[182d5d3]208 <varlistentry>
[908077d]209 <term><parameter>--disable-decimal-float, --disable-threads,
[1118b17]210 --disable-libatomic, --disable-libgomp, --disable-libmpx,
[42130d6]211 --disable-libquadmath, --disable-libssp, --disable-libvtv,
212 --disable-libstdcxx</parameter></term>
[182d5d3]213 <listitem>
[8aad4385]214 <para>These switches disable support for the decimal floating point
[42130d6]215 extension, threading, libatomic, libgomp, libmpx, libquadmath, libssp,
[05a0344]216 libvtv, and the C++ standard library respectively. These features
217 will fail to compile when building a cross-compiler and are not
218 necessary for the task of cross-compiling the temporary libc.</para>
[182d5d3]219 </listitem>
220 </varlistentry>
221
[1f7ca93]222 <varlistentry>
[4e82d47]223 <term><parameter>--disable-multilib</parameter></term>
[1f7ca93]224 <listitem>
[4e82d47]225 <para>On x86_64, LFS does not yet support a multilib configuration.
226 This switch is harmless for x86.</para>
[1f7ca93]227 </listitem>
228 </varlistentry>
229
[6e88633]230 <varlistentry>
[908077d]231 <term><parameter>--enable-languages=c,c++</parameter></term>
[6e88633]232 <listitem>
[908077d]233 <para>This option ensures that only the C and C++ compilers are built.
234 These are the only languages needed now.</para>
[6e88633]235 </listitem>
236 </varlistentry>
237
[1f7ca93]238 </variablelist>
239
[4e82d47]240 <para>Compile GCC by running:</para>
[b0a4c9a]241
[0445a3d]242<screen><userinput remap="make">make</userinput></screen>
[81fd230]243
[1f7ca93]244 <para>Compilation is now complete. At this point, the test suite would
245 normally be run, but, as mentioned before, the test suite framework is
246 not in place yet. The benefits of running the tests at this point
247 are minimal since the programs from this first pass will soon be
248 replaced.</para>
249
250 <para>Install the package:</para>
[73aedd1d]251
[0445a3d]252<screen><userinput remap="install">make install</userinput></screen>
[e079f16]253<!--
254 <para>Using <parameter>- -disable-shared</parameter> means that the
[0eb90658]255 <filename>libgcc_eh.a</filename> file isn't created and installed. The
256 Glibc package depends on this library as it uses
[4e82d47]257 <parameter>-lgcc_eh</parameter> within its build system. This dependency
258 can be satisfied by creating a symlink to <filename>libgcc.a</filename>,
[0eb90658]259 since that file will end up containing the objects normally contained in
[5f7456b]260 <filename>libgcc_eh.a</filename>:</para>
[0eb90658]261
[5cef314]262<screen><userinput remap="install">ln -sv libgcc.a `$LFS_TGT-gcc -print-libgcc-file-name | sed 's/libgcc/&amp;_eh/'`</userinput></screen>
[e079f16]263-->
[1f7ca93]264 </sect2>
[bc82645e]265
[1f7ca93]266 <sect2 role="content">
267 <title/>
[81fd230]268
[1f7ca93]269 <para>Details on this package are located in
270 <xref linkend="contents-gcc" role="."/></para>
[81fd230]271
[1f7ca93]272 </sect2>
273
274</sect1>
Note: See TracBrowser for help on using the repository browser.