source: BOOK/cross-tools/common/gcc-static.xml@ d24f06a

systemd
Last change on this file since d24f06a was f6853e3, checked in by William Harrington <kb0iic@…>, 9 years ago

Update GCC 5.2.0 from GCC 4.8.0.

  • 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-cross-tools-gcc-static" role="wrap">
9 <?dbhtml filename="gcc-static.html"?>
10
11 <title>Cross GCC-&gcc-version; - Static</title>
12
13 <indexterm zone="ch-cross-tools-gcc-static">
14 <primary sortas="a-GCC">GCC</primary>
15 <secondary>cross tools, static</secondary>
16 </indexterm>
17
18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
19 href="../../final-system/common/gcc.xml"
20 xpointer="xpointer(//*[@role='package'])"/>
21
22 <sect2 role="installation">
23 <title>Installation of Cross GCC Compiler with Static libgcc
24 and no Threads</title>
25
26 <para os="e">Here we will compile GCC, as a cross-compiler that will create
27 executables for our target architecture, statically so that it will not
28 need to look for Glibc's startfiles, which do not yet exist in
29 <filename class="directory">/tools</filename>. We will use this
30 cross-compiler, plus the cross-linker we have just installed with Binutils,
31 to compile Glibc. After Glibc is installed into
32 <filename class="directory">/tools</filename>, we can rebuild GCC
33 so that it will then be able to build executables that link against the
34 libraries in <filename class="directory">/tools</filename>.</para>
35
36 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
37 href="../../final-system/common/gcc.xml"
38 xpointer="xpointer(//*[@os='p1'])"/>
39
40 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
41 href="../../final-system/common/gcc.xml"
42 xpointer="xpointer(//*[@os='p2'])"/>
43
44 <para os="aa">Make a couple of essential adjustments to GCC's specs
45 to ensure GCC uses our build environment:</para>
46
47<screen os="ab"><userinput>patch -Np1 -i ../&gcc-specs-patch;</userinput></screen>
48
49 <para os="ag">Change the StartFile Spec so that GCC looks in
50<filename class="directory">/tools</filename>:</para>
51
52<screen os="ah"><userinput>echo -en '\n#undef STANDARD_STARTFILE_PREFIX_1\n#define STANDARD_STARTFILE_PREFIX_1 "/tools/lib/"\n' &gt;&gt; gcc/config/linux.h
53echo -en '\n#undef STANDARD_STARTFILE_PREFIX_2\n#define STANDARD_STARTFILE_PREFIX_2 ""\n' &gt;&gt; gcc/config/linux.h</userinput></screen>
54
55 <para os="t1">We will create a dummy <filename>limits.h</filename> so
56 the build will not use the one provided by the host distro:</para>
57
58<screen os="t2"><userinput>touch /tools/include/limits.h</userinput></screen>
59
60 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
61 href="../../final-system/common/gcc.xml"
62 xpointer="xpointer(//*[@os='f'])"/>
63
64 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
65 href="../../final-system/common/gcc.xml"
66 xpointer="xpointer(//*[@os='g'])"/>
67
68 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
69 href="../../final-system/common/gcc.xml"
70 xpointer="xpointer(//*[@os='h'])"/>
71
72<screen os="al"><userinput>AR=ar LDFLAGS="-Wl,-rpath,/cross-tools/lib" \
73 ../gcc-&gcc-version;/configure --prefix=/cross-tools \
74 --build=${CLFS_HOST} --host=${CLFS_HOST} --target=${CLFS_TARGET} \
75 --with-sysroot=${CLFS} --with-local-prefix=/tools \
76 --with-native-system-header-dir=/tools/include \
77 --disable-shared --with-mpfr=/cross-tools --with-gmp=/cross-tools \
78 --with-isl=/cross-tools --with-mpc=/cross-tools --without-headers \
79 --with-newlib --disable-decimal-float --disable-libgomp --disable-libssp \
80 --disable-libatomic --disable-libitm --disable-libsanitizer \
81 --disable-libquadmath --disable-libvtv --disable-libcilkrts \
82 --disable-libstdc++-v3 --disable-threads --disable-multilib \
83 --with-system-zlib --enable-languages=c --disable-boostrap \
84 --with-glibc-version=&glibc-version;</userinput></screen>
85
86 <variablelist os="am">
87 <title>The meaning of the new configure options:</title>
88
89 <varlistentry>
90 <term><parameter>--build=${CLFS_HOST}</parameter></term>
91 <listitem>
92 <para>This specifies the system on which the cross-compiler is being
93 built.</para>
94 </listitem>
95 </varlistentry>
96
97 <varlistentry>
98 <term><parameter>--with-local-prefix=/tools</parameter></term>
99 <listitem>
100 <para>The purpose of this switch is to remove <filename
101 class="directory">/usr/local/include</filename> from
102 <command>gcc</command>'s include search path. This is not
103 absolutely essential, however, it helps to minimize the
104 influence of the host system.</para>
105 </listitem>
106 </varlistentry>
107
108 <varlistentry>
109 <term><parameter>--with-native-system-headers-dir=/tools/include</parameter></term>
110 <listitem>
111 <para>This switch ensures that GCC will search for the system headers
112 in <filename class="directory">/tools/include</filename> and that
113 host system headers will not be searched.</para>
114 </listitem>
115 </varlistentry>
116
117 <varlistentry>
118 <term><parameter>--disable-shared</parameter></term>
119 <listitem>
120 <para>This tells GCC not to create a shared library.</para>
121 </listitem>
122 </varlistentry>
123
124 <varlistentry>
125 <term><parameter>--without-headers</parameter></term>
126 <listitem>
127 <para>Disables GCC from using the target's Libc when cross compiling.</para>
128 </listitem>
129 </varlistentry>
130
131 <varlistentry>
132 <term><parameter>--with-newlib</parameter></term>
133 <listitem>
134 <para>This causes GCC to enable the <envar>inhibit_libc</envar> flag,
135 which prevents <filename class="libraryfile">libgcc</filename>
136 from building code that uses libc support.</para>
137 </listitem>
138 </varlistentry>
139
140 <varlistentry>
141 <term><parameter>--disable-decimal-float</parameter></term>
142 <listitem>
143 <para>Disables support for the C decimal floating point extension.</para>
144 </listitem>
145 </varlistentry>
146
147 <varlistentry>
148 <term><parameter>--disable-lib*</parameter></term>
149 <listitem>
150 <para>These options prevent GCC from building a number of libraries
151 that are not needed at this time.</para>
152 </listitem>
153 </varlistentry>
154
155 <varlistentry>
156 <term><parameter>--disable-threads</parameter></term>
157 <listitem>
158 <para>This will prevent GCC from looking for the multi-thread
159 include files, since they haven't been created for this architecture
160 yet. GCC will be able to find the multi-thread information after
161 the Glibc headers are created.</para>
162 </listitem>
163 </varlistentry>
164
165 <varlistentry>
166 <term><parameter>--with-system-zlib</parameter></term>
167 <listitem>
168 <para>This tells GCC to link to the system-installed zlib instead
169 of the one in its source tree.</para>
170 </listitem>
171 </varlistentry>
172
173 <varlistentry>
174 <term><parameter>--enable-languages=c</parameter></term>
175 <listitem>
176 <para>This option ensures that only the C compiler is built.</para>
177 </listitem>
178 </varlistentry>
179
180 <varlistentry>
181 <term><parameter>--with-glibc-version=&glibc-version;</parameter></term>
182 <listitem>
183 <para>Needed when bootstrapping a cross toolchain without the header
184 files avilable for building the initial bootstrap compiler.</para>
185 </listitem>
186 </varlistentry>
187
188 </variablelist>
189
190 <para os="an">Continue with compiling the package:</para>
191
192<screen os="ao"><userinput>make all-gcc all-target-libgcc</userinput></screen>
193
194 <variablelist os="ap">
195 <title>The meaning of the new make options:</title>
196
197 <varlistentry>
198 <term><parameter>all-gcc all-target-libgcc</parameter></term>
199 <listitem>
200 <para>Compiles only the parts of GCC that are needed at this time,
201 rather than the full package.</para>
202 </listitem>
203 </varlistentry>
204
205 </variablelist>
206
207 <para os="aq">Install the package:</para>
208
209<screen os="ar"><userinput>make install-gcc install-target-libgcc</userinput></screen>
210
211 </sect2>
212
213 <sect2 role="content">
214 <title/>
215
216 <para>Details on this package are located in <xref
217 linkend="contents-gcc" role="."/></para>
218
219 </sect2>
220
221</sect1>
Note: See TracBrowser for help on using the repository browser.