[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-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 |
|
---|
[dabbced] | 18 | <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
---|
[cf66ceae] | 19 | href="../../final-system/common/gcc.xml"
|
---|
| 20 | xpointer="xpointer(//*[@role='package'])"/>
|
---|
[3f8be484] | 21 |
|
---|
| 22 | <sect2 role="installation">
|
---|
| 23 | <title>Installation of Cross GCC Compiler with Static libgcc
|
---|
| 24 | and no Threads</title>
|
---|
| 25 |
|
---|
[e05c4f0] | 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 |
|
---|
[3cf4292] | 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>
|
---|
[3f8be484] | 34 |
|
---|
| 35 | <screen os="ab"><userinput>patch -Np1 -i ../&gcc-specs-patch;</userinput></screen>
|
---|
| 36 |
|
---|
[e53465ee] | 37 | <para os="ag">Change the StartFile Spec and Standard Include Dir so that
|
---|
| 38 | GCC looks in <filename class="directory">/tools</filename>:</para>
|
---|
[d04ed61] | 39 |
|
---|
[1e16d91] | 40 | <screen os="ah"><userinput>echo -en '#undef STANDARD_INCLUDE_DIR\n#define STANDARD_INCLUDE_DIR "/tools/include/"\n\n' >> gcc/config/linux.h
|
---|
| 41 | echo -en '\n#undef STANDARD_STARTFILE_PREFIX_1\n#define STANDARD_STARTFILE_PREFIX_1 "/tools/lib/"\n' >> gcc/config/linux.h
|
---|
[c1832da] | 42 | echo -en '\n#undef STANDARD_STARTFILE_PREFIX_2\n#define STANDARD_STARTFILE_PREFIX_2 ""\n' >> gcc/config/linux.h</userinput></screen>
|
---|
[d04ed61] | 43 |
|
---|
[121c48a] | 44 | <para os="ai">Now alter <command>gcc</command>'s c preprocessor's default
|
---|
[12d030c] | 45 | include search path to use <filename class="directory">/tools</filename> only:</para>
|
---|
[3f8be484] | 46 |
|
---|
[0b637f1] | 47 | <screen os="aj"><userinput>cp -v gcc/Makefile.in{,.orig}
|
---|
[bc2e3fa] | 48 | sed -e "s@\(^CROSS_SYSTEM_HEADER_DIR =\).*@\1 /tools/include@g" \
|
---|
[1b274255] | 49 | gcc/Makefile.in.orig > gcc/Makefile.in</userinput></screen>
|
---|
[3f8be484] | 50 |
|
---|
[3cf4292] | 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>
|
---|
[562a0ae] | 53 |
|
---|
[3309623] | 54 | <screen os="t2"><userinput>touch /tools/include/limits.h</userinput></screen>
|
---|
[562a0ae] | 55 |
|
---|
[dabbced] | 56 | <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
---|
[3f8be484] | 57 | href="../../final-system/common/gcc.xml"
|
---|
| 58 | xpointer="xpointer(//*[@os='f'])"/>
|
---|
| 59 |
|
---|
[dabbced] | 60 | <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
---|
[3f8be484] | 61 | href="../../final-system/common/gcc.xml"
|
---|
| 62 | xpointer="xpointer(//*[@os='g'])"/>
|
---|
| 63 |
|
---|
[dabbced] | 64 | <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
---|
[3f8be484] | 65 | href="../../final-system/common/gcc.xml"
|
---|
| 66 | xpointer="xpointer(//*[@os='h'])"/>
|
---|
| 67 |
|
---|
[88958a8] | 68 | <screen os="al"><userinput>AR=ar LDFLAGS="-Wl,-rpath,/cross-tools/lib" \
|
---|
[c1832da] | 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 \
|
---|
[fd54d80] | 73 | --with-ppl=/cross-tools --with-cloog=/cross-tools \
|
---|
[c1832da] | 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>
|
---|
[3f8be484] | 77 |
|
---|
[d55f00bc] | 78 | <variablelist os="am">
|
---|
[3f8be484] | 79 | <title>The meaning of the configure options:</title>
|
---|
| 80 |
|
---|
| 81 | <varlistentry>
|
---|
| 82 | <term><parameter>--with-local-prefix=/tools</parameter></term>
|
---|
| 83 | <listitem>
|
---|
| 84 | <para>The purpose of this switch is to remove <filename
|
---|
| 85 | class="directory">/usr/local/include</filename> from
|
---|
| 86 | <command>gcc</command>'s include search path. This is not
|
---|
| 87 | absolutely essential, however, it helps to minimize the
|
---|
| 88 | influence of the host system.</para>
|
---|
| 89 | </listitem>
|
---|
| 90 | </varlistentry>
|
---|
| 91 |
|
---|
| 92 | <varlistentry>
|
---|
| 93 | <term><parameter>--disable-shared</parameter></term>
|
---|
| 94 | <listitem>
|
---|
| 95 | <para>Disables the creation of the shared libraries.</para>
|
---|
| 96 | </listitem>
|
---|
| 97 | </varlistentry>
|
---|
| 98 |
|
---|
| 99 | <varlistentry>
|
---|
| 100 | <term><parameter>--disable-threads</parameter></term>
|
---|
| 101 | <listitem>
|
---|
[193315c] | 102 | <para>This will prevent GCC from looking for the multi-thread
|
---|
[6d4c909] | 103 | include files, since they haven't been created for this architecture
|
---|
| 104 | yet. GCC will be able to find the multi-thread information after
|
---|
| 105 | the Glibc headers are created.</para>
|
---|
[3f8be484] | 106 | </listitem>
|
---|
| 107 | </varlistentry>
|
---|
| 108 |
|
---|
| 109 | <varlistentry>
|
---|
| 110 | <term><parameter>--enable-languages=c</parameter></term>
|
---|
| 111 | <listitem>
|
---|
| 112 | <para>This option ensures that only the C compiler is built.</para>
|
---|
| 113 | </listitem>
|
---|
| 114 | </varlistentry>
|
---|
| 115 |
|
---|
| 116 | </variablelist>
|
---|
| 117 |
|
---|
[d55f00bc] | 118 | <para os="an">Continue with compiling the package:</para>
|
---|
[3f8be484] | 119 |
|
---|
[4651341] | 120 | <screen os="ao"><userinput>make all-gcc all-target-libgcc</userinput></screen>
|
---|
[3f8be484] | 121 |
|
---|
[d55f00bc] | 122 | <para os="ap">Install the package:</para>
|
---|
[3f8be484] | 123 |
|
---|
[4651341] | 124 | <screen os="aq"><userinput>make install-gcc install-target-libgcc</userinput></screen>
|
---|
[3f8be484] | 125 |
|
---|
| 126 | </sect2>
|
---|
| 127 |
|
---|
| 128 | <sect2 role="content">
|
---|
| 129 | <title/>
|
---|
| 130 |
|
---|
| 131 | <para>Details on this package are located in <xref
|
---|
| 132 | linkend="contents-gcc" role="."/></para>
|
---|
| 133 |
|
---|
| 134 | </sect2>
|
---|
| 135 |
|
---|
| 136 | </sect1>
|
---|