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

clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since f1873f3 was f1873f3, checked in by Jonathan Norman <jon@…>, 12 years ago

Remove gcc branch patch

  • Property mode set to 100644
File size: 8.0 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="p1">The following patch contains a number of updates to the
27    &gcc-version; branch by the GCC developers:</para>
28
29    <screen os="p2"><userinput>patch -Np1 -i ../&gcc-branch_update-patch;</userinput></screen> -->
30
31    <para os="aa">Make a couple of essential adjustments to the
32    <filename>specs</filename> file to ensure GCC uses our build
33    environment:</para>
34
35<screen os="ab"><userinput>patch -Np1 -i ../&gcc-specs-patch;</userinput></screen>
36
37    <para os="ag">Change the StartFile Spec and Standard Include Dir so that
38    GCC looks in <filename class="directory">/tools</filename>:</para>
39
40<screen os="ah"><userinput>echo -en '#undef STANDARD_INCLUDE_DIR\n#define STANDARD_INCLUDE_DIR "/tools/include/"\n\n' >> gcc/config/linux.h
41echo -en '\n#undef STANDARD_STARTFILE_PREFIX_1\n#define STANDARD_STARTFILE_PREFIX_1 "/tools/lib/"\n' >> gcc/config/linux.h
42echo -en '\n#undef STANDARD_STARTFILE_PREFIX_2\n#define STANDARD_STARTFILE_PREFIX_2 ""\n' >> gcc/config/linux.h</userinput></screen>
43
44    <para os="ai">Now alter <command>gcc</command>'s c preprocessor's default
45    include search path to use <filename class="directory">/tools</filename> only:</para>
46
47<screen os="aj"><userinput>cp -v gcc/Makefile.in{,.orig}
48sed -e "s@\(^CROSS_SYSTEM_HEADER_DIR =\).*@\1 /tools/include@g" \
49    gcc/Makefile.in.orig &gt; gcc/Makefile.in</userinput></screen>
50
51    <para os="t1">We will create a dummy <filename>limits.h</filename> so
52    the build will not use the one provided by the host distro:</para>
53
54<screen os="t2"><userinput>touch /tools/include/limits.h</userinput></screen>
55
56    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
57    href="../../final-system/common/gcc.xml"
58    xpointer="xpointer(//*[@os='f'])"/>
59
60    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
61    href="../../final-system/common/gcc.xml"
62    xpointer="xpointer(//*[@os='g'])"/>
63
64    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
65    href="../../final-system/common/gcc.xml"
66    xpointer="xpointer(//*[@os='h'])"/>
67
68<screen os="al"><userinput>AR=ar LDFLAGS="-Wl,-rpath,/cross-tools/lib" \
69  ../gcc-&gcc-version;/configure --prefix=/cross-tools \
70  --build=${CLFS_HOST} --host=${CLFS_HOST} --target=${CLFS_TARGET} \
71  --with-sysroot=${CLFS} --with-local-prefix=/tools --disable-nls \
72  --disable-shared --with-mpfr=/cross-tools --with-gmp=/cross-tools \
73  --with-ppl=/cross-tools --with-cloog=/cross-tools \
74  --without-headers --with-newlib --disable-decimal-float \
75  --disable-libgomp --disable-libmudflap --disable-libssp \
76  --disable-threads --enable-languages=c --disable-multilib</userinput></screen>
77
78    <variablelist os="am">
79      <title>The meaning of the configure options:</title>
80
81      <varlistentry>
82        <term><parameter>--prefix=/cross-tools</parameter></term>
83        <listitem>
84          <para>This tells the configure script to prepare to install the
85          package in the <filename class="directory">/cross-tools</filename>
86          directory.</para>
87        </listitem>
88      </varlistentry>
89
90      <varlistentry>
91        <term><parameter>--host=${CLFS_HOST}</parameter></term>
92        <listitem>
93          <para>When used with --target, this creates a cross-architecture
94          executable that creates files for ${CLFS_TARGET} but runs on ${CLFS_HOST}.</para>
95        </listitem>
96      </varlistentry>
97
98      <varlistentry>
99        <term><parameter>--target=${CLFS_TARGET}</parameter></term>
100        <listitem>
101          <para>When used with --host, this creates a cross-architecture
102          executable that creates files for ${CLFS_TARGET} but runs on ${CLFS_HOST}.</para>
103        </listitem>
104      </varlistentry>
105
106      <varlistentry>
107        <term><parameter>--with-sysroot=${CLFS}</parameter></term>
108        <listitem>
109          <para>Tells GCC to concider ${CLFS} as the root file system.</para>
110        </listitem>
111      </varlistentry>
112
113     <varlistentry>
114        <term><parameter>--with-local-prefix=/tools</parameter></term>
115        <listitem>
116          <para>The purpose of this switch is to remove <filename
117          class="directory">/usr/local/include</filename> from
118          <command>gcc</command>'s include search path. This is not
119          absolutely essential, however, it helps to minimize the
120          influence of the host system.</para>
121        </listitem>
122      </varlistentry>
123
124      <varlistentry>
125        <term><parameter>--disable-nls</parameter></term>
126        <listitem>
127          <para>This disables internationalization as i18n is not needed for the
128          cross-compile tools.</para>
129        </listitem>
130      </varlistentry>
131
132      <varlistentry>
133        <term><parameter>--disable-shared</parameter></term>
134        <listitem>
135          <para>Disables the creation of the shared libraries.</para>
136        </listitem>
137      </varlistentry>
138
139      <varlistentry>
140        <term><parameter>--without-headers</parameter></term>
141        <listitem>
142          <para>Disables GCC from using the target's Libc when cross compiling.</para>
143        </listitem>
144      </varlistentry>
145
146      <varlistentry>
147        <term><parameter>--with-newlib</parameter></term>
148        <listitem>
149          <para>Tells GCC that the target libc will use 'newlib'.</para>
150        </listitem>
151      </varlistentry>
152
153      <varlistentry>
154        <term><parameter>--disable-decimal-float</parameter></term>
155        <listitem>
156          <para>Disables support for the C decimal floating point extension.</para>
157        </listitem>
158      </varlistentry>
159
160      <varlistentry>
161        <term><parameter>--disable-libgomp</parameter></term>
162        <listitem>
163          <para>Disables the creation of runtime libraries used by GOMP.</para>
164        </listitem>
165      </varlistentry>
166
167      <varlistentry>
168        <term><parameter>--disable-libmudflap</parameter></term>
169        <listitem>
170          <para>Disables the creation of runtime libaries used by libmudflap.</para>
171        </listitem>
172      </varlistentry>
173
174      <varlistentry>
175        <term><parameter>--disable-libssp</parameter></term>
176        <listitem>
177          <para>Disables the use of Stack Smashing Protection for runtime libraries.</para>
178        </listitem>
179      </varlistentry>
180
181      <varlistentry>
182        <term><parameter>--disable-threads</parameter></term>
183        <listitem>
184          <para>This will prevent GCC from looking for the multi-thread
185          include files, since they haven't been created for this architecture
186          yet. GCC will be able to find the multi-thread information after
187          the Glibc headers are created.</para>
188        </listitem>
189      </varlistentry>
190
191      <varlistentry>
192        <term><parameter>--enable-languages=c</parameter></term>
193        <listitem>
194          <para>This option ensures that only the C compiler is built.</para>
195        </listitem>
196      </varlistentry>
197
198    </variablelist>
199
200    <para os="an">Continue with compiling the package:</para>
201
202<screen os="ao"><userinput>make all-gcc all-target-libgcc</userinput></screen>
203
204    <para os="ap">Install the package:</para>
205
206<screen os="aq"><userinput>make install-gcc install-target-libgcc</userinput></screen>
207
208  </sect2>
209
210  <sect2 role="content">
211    <title/>
212
213    <para>Details on this package are located in <xref
214    linkend="contents-gcc" role="."/></para>
215
216  </sect2>
217
218</sect1>
Note: See TracBrowser for help on using the repository browser.