source: clfs-embedded/BOOK/cross-tools/arm/gcc-static.xml @ ae51e2a

Last change on this file since ae51e2a was ae51e2a, checked in by Andrew Bradford <bradfa@…>, 13 years ago

Created MIPS and ARM GCC-Static files & cleanup

x86 no longer is common with MIPS and ARM for GCC-Static, so it has
its own GCC-Static file. In the previous implementation, there
was a lot of duplication between the common and x86 GCC-Static files.
This removes the duplication by better referencing the common file
and also creates MIPS and ARM specific GCC-Static files.

In this way, everything that is common to all architectures goes into
the common file and each architecture's GCC-Static file is specific
to the architecture.

* PLEASE NOTE *: As of this commit, GCC-Final is BROKEN for x86!
It will be fixed shortly.
DO NOT MERGE THIS UNTIL GCC-FINAL IS FIXED FOR x86!

  • Property mode set to 100644
File size: 2.9 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<!-- ARM GCC-Static -->
9
10<sect1 id="ch-cross-tools-gcc-static" role="wrap">
11  <?dbhtml filename="gcc-static.html"?>
12
13  <title>Cross GCC-&gcc-version; - Static</title>
14
15  <indexterm zone="ch-cross-tools-gcc-static">
16    <primary sortas="a-GCC">GCC</primary>
17    <secondary>cross tools, static</secondary>
18  </indexterm>
19
20  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
21  href="../common/gcc-static.xml"
22  xpointer="xpointer(//*[@role='package'])"/>
23
24  <sect2 role="installation">
25
26  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
27  href="../common/gcc-static.xml"
28  xpointer="xpointer(//*[@os='a'])"/>
29
30  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
31  href="../common/gcc-static.xml"
32  xpointer="xpointer(//*[@os='c'])"/>
33
34  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
35  href="../common/gcc-static.xml"
36  xpointer="xpointer(//*[@os='d'])"/>
37
38  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
39  href="../common/gcc-static.xml"
40  xpointer="xpointer(//*[@os='e'])"/>
41
42<screen os="ae"><userinput>AR=ar LDFLAGS="-Wl,-rpath,${CLFS}/cross-tools/lib" \
43  ../gcc-&gcc-version;/configure --prefix=${CLFS}/cross-tools \
44  --build=${CLFS_HOST} --host=${CLFS_HOST} --target=${CLFS_TARGET} \
45  --with-sysroot=${CLFS} --disable-nls  --disable-shared \
46  --with-mpfr=${CLFS}/cross-tools --with-gmp=${CLFS}/cross-tools \
47  --with-mpc=${CLFS}/cross-tools --without-headers --with-newlib \
48  --disable-decimal-float --disable-libgomp --disable-libmudflap \
49  --disable-libssp --disable-threads --enable-languages=c \
50  --with-abi=${CLFS_ABI}</userinput></screen>
51
52<!-- Common configure switches for all archs -->
53  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
54  href="../common/gcc-static.xml"
55  xpointer="xpointer(//*[@os='af'])"/>
56
57<!-- Specific configure switches for ARM -->
58  <variablelist os="ag">
59
60    <varlistentry os="ag1">
61      <term><parameter>--with-abi=${CLFS_ABI}</parameter></term>
62      <listitem>
63        <para>This option sets the ABI selected earlier.</para>
64      </listitem>
65    </varlistentry>
66
67  </variablelist>
68
69  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
70  href="../common/gcc-static.xml"
71  xpointer="xpointer(//*[@os='ah'])"/>
72
73  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
74  href="../common/gcc-static.xml"
75  xpointer="xpointer(//*[@os='ai'])"/>
76
77  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
78  href="../common/gcc-static.xml"
79  xpointer="xpointer(//*[@os='aj'])"/>
80
81  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
82  href="../common/gcc-static.xml"
83  xpointer="xpointer(//*[@os='ak'])"/>
84
85  </sect2>
86
87  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
88  href="../common/gcc-static.xml"
89  xpointer="xpointer(//*[@role='content'])"/>
90
91</sect1>
Note: See TracBrowser for help on using the repository browser.