source: BOOK/cross-tools/common/gcc-final.xml@ 833efa2

clfs-1.2 clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since 833efa2 was 5ec7db05, checked in by Jim Gifford <clfs@…>, 16 years ago

Updated to GCC 4.3.3

  • Property mode set to 100644
File size: 4.9 KB
RevLine 
[3f8be484]1<?xml version="1.0" encoding="ISO-8859-1"?>
[aa18ac0]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[3f8be484]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-cross-tools-gcc-final" role="wrap">
9 <?dbhtml filename="gcc-final.html"?>
10
[1da2a84]11 <title>Cross GCC-&gcc-version; - Final</title>
[3f8be484]12
13 <indexterm zone="ch-cross-tools-gcc-final">
14 <primary sortas="a-GCC">GCC</primary>
15 <secondary>cross tools, final</secondary>
16 </indexterm>
17
[cf66ceae]18 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
19 href="../../final-system/common/gcc.xml"
20 xpointer="xpointer(//*[@role='package'])"/>
[3f8be484]21
22 <sect2 role="installation">
23 <title>Installation of GCC Cross Compiler</title>
24
[5ec7db05]25<!--
[3f8be484]26 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
[4883ef5]27 href="gcc-static.xml"
28 xpointer="xpointer(//*[@os='p1'])"/>
29
30 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
31 href="gcc-static.xml"
32 xpointer="xpointer(//*[@os='p2'])"/>
[5ec7db05]33-->
[4883ef5]34
35 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
[3f8be484]36 href="gcc-static.xml"
37 xpointer="xpointer(//*[@os='aa'])"/>
38
39 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
40 href="gcc-static.xml"
41 xpointer="xpointer(//*[@os='ab'])"/>
42
43 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
44 href="gcc-static.xml"
45 xpointer="xpointer(//*[@os='ac'])"/>
46
47 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
48 href="gcc-static.xml"
49 xpointer="xpointer(//*[@os='ad'])"/>
50
51 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
52 href="gcc-static.xml"
53 xpointer="xpointer(//*[@os='ag'])"/>
54
55 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
56 href="gcc-static.xml"
57 xpointer="xpointer(//*[@os='ah'])"/>
58
59 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
60 href="gcc-static.xml"
61 xpointer="xpointer(//*[@os='ai'])"/>
62
63 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
64 href="gcc-static.xml"
65 xpointer="xpointer(//*[@os='aj'])"/>
66
67 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
68 href="gcc-static.xml"
69 xpointer="xpointer(//*[@os='f'])"/>
70
71 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
72 href="gcc-static.xml"
73 xpointer="xpointer(//*[@os='g'])"/>
74
75 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
76 href="gcc-static.xml"
77 xpointer="xpointer(//*[@os='h'])"/>
78
[88958a8]79<screen os="bf"><userinput>AR=ar LDFLAGS="-Wl,-rpath,/cross-tools/lib" \
[c1832da]80 ../gcc-&gcc-version;/configure --prefix=/cross-tools \
81 --build=${CLFS_HOST} --target=${CLFS_TARGET} --host=${CLFS_HOST} \
82 --with-sysroot=${CLFS} --with-local-prefix=/tools --disable-nls \
83 --enable-shared --enable-languages=c,c++ --enable-__cxa_atexit \
84 --with-mpfr=/cross-tools --with-gmp=/cross-tools --enable-c99 \
85 --enable-long-long --enable-threads=posix --disable-multilib</userinput></screen>
[3f8be484]86
[d55f00bc]87 <variablelist os="bg">
[3f8be484]88 <title>The meaning of the new configure options:</title>
89
[d55f00bc]90 <varlistentry os="bg1">
[3f8be484]91 <term><parameter>--enable-languages=c,c++</parameter></term>
92 <listitem>
[6bb43b3]93 <para>This option ensures that only the C and C++ compilers are built.</para>
[3f8be484]94 </listitem>
95 </varlistentry>
96
[d55f00bc]97 <varlistentry os="bg2">
[3f8be484]98 <term><parameter>--enable-__cxa_atexit</parameter></term>
99 <listitem>
100 <para>This option allows use of __cxa_atexit, rather than atexit,
101 to register C++ destructors for local statics and global objects
102 and is essential for fully standards-compliant handling of destructors.
103 It also affects the C++ ABI and therefore results in C++ shared libraries
104 and C++ programs that are interoperable with other Linux distributions.</para>
105 </listitem>
106 </varlistentry>
107
[d55f00bc]108 <varlistentry os="bg3">
[3f8be484]109 <term><parameter>--enable-c99</parameter></term>
110 <listitem>
111 <para>Enable C99 support for C programs.</para>
112 </listitem>
113 </varlistentry>
114
[d55f00bc]115 <varlistentry os="bg4">
[3f8be484]116 <term><parameter>--enable-long-long</parameter></term>
117 <listitem>
118 <para>Enables long long support in the compiler.</para>
119 </listitem>
120 </varlistentry>
121
[d55f00bc]122 <varlistentry os="bg5">
[3f8be484]123 <term><parameter>--enable-threads=posix</parameter></term>
124 <listitem>
125 <para>This enables C++ exception handling for multi-threaded code.</para>
126 </listitem>
127 </varlistentry>
128
129 </variablelist>
130
[d55f00bc]131 <para os="bh">Continue with compiling the package:</para>
[3f8be484]132
[07114c98]133<screen os="bi"><userinput>make AS_FOR_TARGET="${CLFS_TARGET}-as" \
134 LD_FOR_TARGET="${CLFS_TARGET}-ld"</userinput></screen>
[3f8be484]135
[d55f00bc]136 <para os="bj">Install the package:</para>
[3f8be484]137
[d55f00bc]138<screen os="bk"><userinput>make install</userinput></screen>
[3f8be484]139
140 </sect2>
141
142 <sect2 role="content">
143 <title/>
144
145 <para>Details on this package are located in <xref
146 linkend="contents-gcc" role="."/></para>
147
148 </sect2>
149
150</sect1>
Note: See TracBrowser for help on using the repository browser.