| 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-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 |  | 
|---|
| 18 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" | 
|---|
| 19 | href="../../final-system/common/gcc.xml" | 
|---|
| 20 | xpointer="xpointer(//*[@role='package'])"/> | 
|---|
| 21 |  | 
|---|
| 22 | <sect2 role="installation"> | 
|---|
| 23 | <title>Installation of Cross GCC Compiler with Static libgcc | 
|---|
| 24 | and no Threads</title> | 
|---|
| 25 |  | 
|---|
| 26 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" | 
|---|
| 27 | href="../../final-system/common/gcc.xml" | 
|---|
| 28 | xpointer="xpointer(//*[@os='p1'])"/> | 
|---|
| 29 |  | 
|---|
| 30 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" | 
|---|
| 31 | href="../../final-system/common/gcc.xml" | 
|---|
| 32 | xpointer="xpointer(//*[@os='p2'])"/> | 
|---|
| 33 |  | 
|---|
| 34 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" | 
|---|
| 35 | href="../../final-system/common/gcc.xml" | 
|---|
| 36 | xpointer="xpointer(//*[@os='p3'])"/> | 
|---|
| 37 |  | 
|---|
| 38 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" | 
|---|
| 39 | href="../../final-system/common/gcc.xml" | 
|---|
| 40 | xpointer="xpointer(//*[@os='p4'])"/> | 
|---|
| 41 |  | 
|---|
| 42 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" | 
|---|
| 43 | href="../../final-system/common/gcc.xml" | 
|---|
| 44 | xpointer="xpointer(//*[@os='c'])"/> | 
|---|
| 45 |  | 
|---|
| 46 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" | 
|---|
| 47 | href="../../final-system/common/gcc.xml" | 
|---|
| 48 | xpointer="xpointer(//*[@os='d'])"/> | 
|---|
| 49 |  | 
|---|
| 50 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" | 
|---|
| 51 | href="../../final-system/common/gcc.xml" | 
|---|
| 52 | xpointer="xpointer(//*[@os='e'])"/> | 
|---|
| 53 |  | 
|---|
| 54 | <screen os="ae"><userinput>AR=ar LDFLAGS="-Wl,-rpath,${CLFS}/cross-tools/lib" \ | 
|---|
| 55 | ../gcc-&gcc-version;/configure --prefix=${CLFS}/cross-tools \ | 
|---|
| 56 | --build=${CLFS_HOST} --host=${CLFS_HOST} --target=${CLFS_TARGET} \ | 
|---|
| 57 | --disable-multilib --with-sysroot=${CLFS} --disable-nls \ | 
|---|
| 58 | --without-headers --with-newlib --disable-decimal-float \ | 
|---|
| 59 | --disable-libgomp --disable-libmudflap --disable-libssp \ | 
|---|
| 60 | --with-mpfr=${CLFS}/cross-tools --with-gmp=${CLFS}/cross-tools \ | 
|---|
| 61 | --disable-shared --disable-threads --enable-languages=c</userinput></screen> | 
|---|
| 62 |  | 
|---|
| 63 | <variablelist os="af"> | 
|---|
| 64 | <title>The meaning of the configure options:</title> | 
|---|
| 65 |  | 
|---|
| 66 | <varlistentry> | 
|---|
| 67 | <term><parameter>--disable-shared</parameter></term> | 
|---|
| 68 | <listitem> | 
|---|
| 69 | <para>Disables the creation of the shared libraries.</para> | 
|---|
| 70 | </listitem> | 
|---|
| 71 | </varlistentry> | 
|---|
| 72 |  | 
|---|
| 73 | <varlistentry> | 
|---|
| 74 | <term><parameter>--disable-threads</parameter></term> | 
|---|
| 75 | <listitem> | 
|---|
| 76 | <para>This will prevent GCC from looking for the multi-thread | 
|---|
| 77 | include files, since they haven't been created for this architecture | 
|---|
| 78 | yet. GCC will be able to find the multi-thread information after | 
|---|
| 79 | the Glibc headers are created.</para> | 
|---|
| 80 | </listitem> | 
|---|
| 81 | </varlistentry> | 
|---|
| 82 |  | 
|---|
| 83 | <varlistentry> | 
|---|
| 84 | <term><parameter>--enable-languages=c</parameter></term> | 
|---|
| 85 | <listitem> | 
|---|
| 86 | <para>This option ensures that only the C compiler is built.</para> | 
|---|
| 87 | </listitem> | 
|---|
| 88 | </varlistentry> | 
|---|
| 89 |  | 
|---|
| 90 | </variablelist> | 
|---|
| 91 |  | 
|---|
| 92 | <para os="ag">Continue with compiling the package:</para> | 
|---|
| 93 |  | 
|---|
| 94 | <screen os="ah"><userinput>make</userinput></screen> | 
|---|
| 95 |  | 
|---|
| 96 | <para os="ai">Install the package:</para> | 
|---|
| 97 |  | 
|---|
| 98 | <screen os="aj"><userinput>make install</userinput></screen> | 
|---|
| 99 |  | 
|---|
| 100 | </sect2> | 
|---|
| 101 |  | 
|---|
| 102 | <sect2 role="content"> | 
|---|
| 103 | <title/> | 
|---|
| 104 |  | 
|---|
| 105 | <para>Details on this package are located in <xref | 
|---|
| 106 | linkend="contents-gcc" role="."/></para> | 
|---|
| 107 |  | 
|---|
| 108 | </sect2> | 
|---|
| 109 |  | 
|---|
| 110 | </sect1> | 
|---|