source: chapter05/gcc-pass1.xml@ 53415749

xry111/arm64 xry111/arm64-12.0
Last change on this file since 53415749 was 45d1335, checked in by Xi Ruoyao <xry111@…>, 16 months ago

Merge remote-tracking branch 'origin/trunk' into xry111/arm64

  • Property mode set to 100644
File size: 8.4 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
[f6820bb6]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
[3380af3]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
[9334a3f]65 <para>On ARM64 hosts, set the default directory name for
[be3d9f3]66 64-bit libraries to <quote>lib</quote>:</para>
67
[9334a3f]68<screen><userinput remap="pre">sed -e '/lp64=/s/lib64/lib/' \
69 -i.orig gcc/config/aarch64/t-aarch64-linux</userinput></screen>
[be3d9f3]70
[a26f29f]71 <para>The GCC documentation recommends building GCC
[f1dd547]72 in a dedicated build directory:</para>
[3d36131c]73
[f1dd547]74<screen><userinput remap="pre">mkdir -v build
75cd build</userinput></screen>
[73aedd1d]76
[1f7ca93]77 <para>Prepare GCC for compilation:</para>
[73aedd1d]78
[43b6ecd]79<screen><userinput remap="configure">../configure \
80 --target=$LFS_TGT \
81 --prefix=$LFS/tools \
[0fc98a0]82 --with-glibc-version=&glibc-version; \
[43b6ecd]83 --with-sysroot=$LFS \
84 --with-newlib \
85 --without-headers \
[0611f706]86 --enable-default-pie \
87 --enable-default-ssp \
[43b6ecd]88 --disable-nls \
89 --disable-shared \
90 --disable-multilib \
91 --disable-threads \
92 --disable-libatomic \
93 --disable-libgomp \
94 --disable-libquadmath \
95 --disable-libssp \
96 --disable-libvtv \
97 --disable-libstdcxx \
[8aa7fde]98 --enable-languages=c,c++</userinput></screen>
[1f7ca93]99 <variablelist>
100 <title>The meaning of the configure options:</title>
101
[d876f0e]102 <varlistentry>
[0fc98a0]103 <term><parameter>--with-glibc-version=&glibc-version;</parameter></term>
[d876f0e]104 <listitem>
[f6820bb6]105 <para>This option specifies the version of Glibc which will be
[d6006ef]106 used on the target. It is not relevant to the libc of the host
[f6820bb6]107 distro because everything compiled by pass1 GCC will run in the
[d6006ef]108 chroot environment, which is isolated from libc of the host
109 distro.</para>
[d876f0e]110 </listitem>
111 </varlistentry>
112
[1a3e6a3]113 <varlistentry>
114 <term><parameter>--with-newlib</parameter></term>
115 <listitem>
116 <para>Since a working C library is not yet available, this ensures
117 that the inhibit_libc constant is defined when building libgcc. This prevents
118 the compiling of any code that requires libc support.</para>
119 </listitem>
120 </varlistentry>
121
122 <varlistentry>
123 <term><parameter>--without-headers</parameter></term>
124 <listitem>
125 <para>When creating a complete cross-compiler, GCC requires
126 standard headers compatible with the target system. For our
127 purposes these headers will not be needed. This switch prevents
128 GCC from looking for them.</para>
129 </listitem>
[79524a0]130 </varlistentry>
131
[1bade3f]132 <varlistentry>
[8d3b254]133 <term><parameter>--enable-default-pie and
134 --enable-default-ssp</parameter></term>
[1bade3f]135 <listitem>
136 <para>Those switches allow GCC to compile programs with
[e502de1]137 some hardening security features (more information on those in
138 the <xref linkend="pie-ssp-info"/> in chapter 8) by default. The
139 are not strictly needed at this stage, since the compiler will
140 only produce temporary executables. But it is cleaner to have the
141 temporary packages be as close as possible to the final ones.
[1bade3f]142 </para>
143 </listitem>
[79524a0]144 </varlistentry>
145
[1f7ca93]146 <varlistentry>
[0eb90658]147 <term><parameter>--disable-shared</parameter></term>
[1f7ca93]148 <listitem>
[c49647b1]149 <para>This switch forces GCC to link its internal libraries
[f6820bb6]150 statically. We need this because the shared libraries require Glibc,
[79524a0]151 which is not yet installed on the target system.</para>
152 </listitem>
153 </varlistentry>
154
155 <varlistentry>
156 <term><parameter>--disable-multilib</parameter></term>
157 <listitem>
[c8bc743]158 <para>On ARM64, LFS does not support a multilib configuration.</para>
[1f7ca93]159 </listitem>
160 </varlistentry>
161
[182d5d3]162 <varlistentry>
[31e9ff9]163 <term><parameter>--disable-threads,
164 --disable-libatomic, --disable-libgomp,
[42130d6]165 --disable-libquadmath, --disable-libssp, --disable-libvtv,
166 --disable-libstdcxx</parameter></term>
[182d5d3]167 <listitem>
[31e9ff9]168 <para>These switches disable support for
169 threading, libatomic, libgomp, libquadmath, libssp,
[05a0344]170 libvtv, and the C++ standard library respectively. These features
[31e9ff9]171 may fail to compile when building a cross-compiler and are not
[05a0344]172 necessary for the task of cross-compiling the temporary libc.</para>
[182d5d3]173 </listitem>
174 </varlistentry>
175
[6e88633]176 <varlistentry>
[908077d]177 <term><parameter>--enable-languages=c,c++</parameter></term>
[6e88633]178 <listitem>
[908077d]179 <para>This option ensures that only the C and C++ compilers are built.
180 These are the only languages needed now.</para>
[6e88633]181 </listitem>
182 </varlistentry>
183
[1f7ca93]184 </variablelist>
185
[4e82d47]186 <para>Compile GCC by running:</para>
[b0a4c9a]187
[0445a3d]188<screen><userinput remap="make">make</userinput></screen>
[81fd230]189
[1f7ca93]190 <para>Install the package:</para>
[73aedd1d]191
[efcb393]192 <screen><userinput remap="install">make install</userinput></screen>
193
194 <para>This build of GCC has installed a couple of internal system
195 headers. Normally one of them, <filename>limits.h</filename>, would in turn
196 include the corresponding system <filename>limits.h</filename> header, in
197 this case, <filename>$LFS/usr/include/limits.h</filename>. However, at the
[77d2cd8d]198 time of this build of GCC <filename>$LFS/usr/include/limits.h</filename>
[efcb393]199 does not exist, so the internal header that has just been installed is a
200 partial, self-contained file and does not include the extended features of
[f6820bb6]201 the system header. This is adequate for building Glibc, but the full
[efcb393]202 internal header will be needed later. Create a full version of the internal
203 header using a command that is identical to what the GCC build system does
204 in normal circumstances:</para>
205
[adba2da]206 <note>
207 <para>The command below shows an example of nested command substitution
[139b77e]208 using two methods: backquotes and a <literal>$()</literal> construct.
209 It could be rewritten using the same method for both substitutions,
210 but is shown this way to demonstrate how they can be mixed. Generally
211 the <literal>$()</literal> method is preferred.</para>
[adba2da]212 </note>
213
[efcb393]214<screen><userinput remap="install">cd ..
215cat gcc/limitx.h gcc/glimits.h gcc/limity.h > \
[bd5b888]216 `dirname $($LFS_TGT-gcc -print-libgcc-file-name)`/include/limits.h</userinput></screen>
[1f7ca93]217 </sect2>
[bc82645e]218
[1f7ca93]219 <sect2 role="content">
220 <title/>
[81fd230]221
[1f7ca93]222 <para>Details on this package are located in
223 <xref linkend="contents-gcc" role="."/></para>
[81fd230]224
[1f7ca93]225 </sect2>
226
227</sect1>
Note: See TracBrowser for help on using the repository browser.