source: BOOK/cross-tools/native/toolchain.xml@ 91974d5

clfs-1.2 clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since 91974d5 was 3a6f918, checked in by Jim Gifford <clfs@…>, 16 years ago

Removed gcc-build creation in Native Toolchain

  • Property mode set to 100644
File size: 6.4 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-toolchain" role="wrap">
9 <?dbhtml filename="toolchain.html"?>
10
11 <title>Toolchain</title>
12
13 <indexterm zone="ch-cross-tools-toolchain">
14 <primary sortas="a-toolchain">ToolChain</primary>
15 <secondary>cross tools</secondary>
16 </indexterm>
17
18 <sect2 role="package">
19 <title/>
20
21 <para>This section combines Binutils, GCC, GMP, and MPFR packages
22 to create a clean toolchain.</para>
23
24 </sect2>
25
26 <sect2 role="installation">
27 <title>Installation of our Toolchain</title>
28
29 <para os="na">We are going to extract all the files needed
30 to create our toolchain:</para>
31
32<screen os="nb"><userinput>tar -jxf ../gcc-&gcc-version;.tar.bz2
33tar -jxf ../binutils-&binutils-version;.tar.bz2
34tar -jxf ../mfpr-&mpfr-version;.tar.bz2
35tar -jxf ../gmp-&gmp-version;.tar.bz2</userinput></screen>
36
37 <para os="nc">We are going to create a combined directory for
38 or build:</para>
39
40<screen os="nd"><userinput>mkdir -pv sysroot-toolchain
41cd gcc-&gcc-version;; tar -c * | \
42 ( cd ../sysroot-toolchain ; tar xf - )
43cd ../binutils-&binutils-version;; tar -c * | \
44 ( cd ../sysroot-toolchain ; tar xf - )
45cd ../sysroot-toolchain
46mv ../mpfr-&mpfr-version; ./mpfr
47mv ../gmp-&gmp-version; ./gmp</userinput></screen>
48
49 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
50 href="../common/gcc-static.xml"
51 xpointer="xpointer(//*[@os='p1'])"/>
52
53 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
54 href="../common/gcc-static.xml"
55 xpointer="xpointer(//*[@os='p2'])"/>
56
57 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
58 href="../common/binutils.xml"
59 xpointer="xpointer(//*[@os='ba'])"/>
60
61 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
62 href="../common/binutils.xml"
63 xpointer="xpointer(//*[@os='bb'])"/>
64
65 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
66 href="../common/binutils.xml"
67 xpointer="xpointer(//*[@os='p1'])"/>
68
69 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
70 href="../common/binutils.xml"
71 xpointer="xpointer(//*[@os='p2'])"/>
72
73 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
74 href="../common/gcc-static.xml"
75 xpointer="xpointer(//*[@os='p1'])"/>
76
77 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
78 href="../common/gcc-static.xml"
79 xpointer="xpointer(//*[@os='p2'])"/>
80
81 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
82 href="../common/gcc-static.xml"
83 xpointer="xpointer(//*[@os='aa'])"/>
84
85 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
86 href="../common/gcc-static.xml"
87 xpointer="xpointer(//*[@os='ab'])"/>
88
89 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
90 href="../common/gcc-static.xml"
91 xpointer="xpointer(//*[@os='ac'])"/>
92
93 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
94 href="../common/gcc-static.xml"
95 xpointer="xpointer(//*[@os='ad'])"/>
96
97 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
98 href="../common/gcc-static.xml"
99 xpointer="xpointer(//*[@os='ag'])"/>
100
101 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
102 href="../common/gcc-static.xml"
103 xpointer="xpointer(//*[@os='ah'])"/>
104
105 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
106 href="../common/gcc-static.xml"
107 xpointer="xpointer(//*[@os='ai'])"/>
108
109 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
110 href="../common/gcc-static.xml"
111 xpointer="xpointer(//*[@os='aj'])"/>
112
113 <para os="bd">Finally, disable <option>-B</option> in <filename>configure</filename>,
114 so it doesn't pick up the host's header files:</para>
115
116<screen os="be"><userinput>cp -v configure{,.orig}
117sed -e '/FLAGS_FOR_TARGET.*\/lib\//s@-B[^ ]*/lib/@@g' configure.orig > \
118 configure</userinput></screen>
119
120 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
121 href="../common/gcc-static.xml"
122 xpointer="xpointer(//*[@os='f'])"/>
123
124<screen os="bf"><userinput>AR=ar AS=as ../sysroot-toolchain/configure \
125 --with-sysroot=${CLFS} --prefix=/cross-tools \
126 --target=i686-pc-linux-gnu --with-local-prefix=/tools \
127 --without-headers --with-newlib --disable-nls \
128 --disable-shared --disable-decimal-float --disable-libgomp \
129 --disable-libmudflap --disable-libssp --disable-threads \
130 --enable-languages=c --enable-64-bit-bfd --with-lib-path=/tools/lib</userinput></screen>
131
132 <variablelist os="bg">
133 <title>The meaning of the new configure options:</title>
134
135 <varlistentry os="bg1">
136 <term><parameter>--enable-languages=c,c++</parameter></term>
137 <listitem>
138 <para>This option ensures that only the C and C++ compilers are built.</para>
139 </listitem>
140 </varlistentry>
141
142 <varlistentry os="bg2">
143 <term><parameter>--enable-__cxa_atexit</parameter></term>
144 <listitem>
145 <para>This option allows use of __cxa_atexit, rather than atexit,
146 to register C++ destructors for local statics and global objects
147 and is essential for fully standards-compliant handling of destructors.
148 It also affects the C++ ABI and therefore results in C++ shared libraries
149 and C++ programs that are interoperable with other Linux distributions.</para>
150 </listitem>
151 </varlistentry>
152
153 <varlistentry os="bg3">
154 <term><parameter>--enable-c99</parameter></term>
155 <listitem>
156 <para>Enable C99 support for C programs.</para>
157 </listitem>
158 </varlistentry>
159
160 <varlistentry os="bg4">
161 <term><parameter>--enable-long-long</parameter></term>
162 <listitem>
163 <para>Enables long long support in the compiler.</para>
164 </listitem>
165 </varlistentry>
166
167 <varlistentry os="bg5">
168 <term><parameter>--enable-threads=posix</parameter></term>
169 <listitem>
170 <para>This enables C++ exception handling for multi-threaded code.</para>
171 </listitem>
172 </varlistentry>
173
174 </variablelist>
175
176 <para os="bh">Continue with compiling the package:</para>
177
178<screen os="bi"><userinput>make</userinput></screen>
179
180 <para os="bj">Install the package:</para>
181
182<screen os="bk"><userinput>make install</userinput></screen>
183
184 </sect2>
185
186 <sect2 role="content">
187 <title/>
188
189 <para>Details on this package are located in <xref
190 linkend="contents-gcc" role="."/></para>
191
192 </sect2>
193
194</sect1>
Note: See TracBrowser for help on using the repository browser.