source: clfs-embedded/BOOK/cross-tools/x86/gcc-static.xml@ 9228651

Last change on this file since 9228651 was 6368159, checked in by Andrew Bradford <andrew@…>, 11 years ago

gcc-static: Add --disable-lib{quadmath,atomic}

They aren't needed for static build of gcc.

  • Property mode set to 100644
File size: 3.2 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<!-- x86 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='b'])"/>
33
34 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
35 href="../common/gcc-static.xml"
36 xpointer="xpointer(//*[@os='ba'])"/>
37
38 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
39 href="../common/gcc-static.xml"
40 xpointer="xpointer(//*[@os='c'])"/>
41
42 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
43 href="../common/gcc-static.xml"
44 xpointer="xpointer(//*[@os='d'])"/>
45
46 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
47 href="../common/gcc-static.xml"
48 xpointer="xpointer(//*[@os='e'])"/>
49
50<screen os="ae"><userinput>../gcc-&gcc-version;/configure \
51 --prefix=${CLFS}/cross-tools \
52 --build=${CLFS_HOST} \
53 --host=${CLFS_HOST} \
54 --target=${CLFS_TARGET} \
55 --with-sysroot=${CLFS}/cross-tools/sysroot \
56 --disable-nls \
57 --disable-shared \
58 --without-headers \
59 --with-newlib \
60 --disable-decimal-float \
61 --disable-libgomp \
62 --disable-libmudflap \
63 --disable-libssp \
64 --disable-libatomic \
65 --disable-libquadmath \
66 --disable-threads \
67 --enable-languages=c \
68 --disable-multilib \
69 --with-arch=${CLFS_CPU}</userinput></screen>
70
71<!-- Common configure switches for all archs -->
72 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
73 href="../common/gcc-static.xml"
74 xpointer="xpointer(//*[@os='af'])"/>
75
76<!-- Specific configure switches for x86 -->
77 <variablelist os="ag">
78
79 <varlistentry os="ag1">
80 <term><parameter>--with-arch=${CLFS_CPU}</parameter></term>
81 <listitem>
82 <para>This option configures the cross compiler to only output
83 instructions for our previously selected CPU.</para>
84 </listitem>
85 </varlistentry>
86
87 </variablelist>
88
89 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
90 href="../common/gcc-static.xml"
91 xpointer="xpointer(//*[@os='ah'])"/>
92
93 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
94 href="../common/gcc-static.xml"
95 xpointer="xpointer(//*[@os='ai'])"/>
96
97 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
98 href="../common/gcc-static.xml"
99 xpointer="xpointer(//*[@os='aj'])"/>
100
101 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
102 href="../common/gcc-static.xml"
103 xpointer="xpointer(//*[@os='ak'])"/>
104
105 </sect2>
106
107 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
108 href="../common/gcc-static.xml"
109 xpointer="xpointer(//*[@role='content'])"/>
110
111</sect1>
Note: See TracBrowser for help on using the repository browser.