| [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 |  | 
|---|
| [cc858ed] | 26 | <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" | 
|---|
|  | 27 | href="../../final-system/common/gcc.xml" | 
|---|
|  | 28 | xpointer="xpointer(//*[@os='p1'])"/> | 
|---|
|  | 29 |  | 
|---|
|  | 30 | <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" | 
|---|
|  | 31 | href="../../final-system/common/gcc.xml" | 
|---|
|  | 32 | xpointer="xpointer(//*[@os='p2'])"/> | 
|---|
|  | 33 |  | 
|---|
| [3cf4292] | 34 | <para os="aa">Make a couple of essential adjustments to the | 
|---|
|  | 35 | <filename>specs</filename> file to ensure GCC uses our build | 
|---|
|  | 36 | environment:</para> | 
|---|
| [3f8be484] | 37 |  | 
|---|
|  | 38 | <screen os="ab"><userinput>patch -Np1 -i ../&gcc-specs-patch;</userinput></screen> | 
|---|
|  | 39 |  | 
|---|
| [4dbd276] | 40 | <para os="ag">Change the StartFile Spec so that GCC looks in | 
|---|
|  | 41 | <filename class="directory">/tools</filename>:</para> | 
|---|
| [d04ed61] | 42 |  | 
|---|
| [4dbd276] | 43 | <screen os="ah"><userinput>echo -en '\n#undef STANDARD_STARTFILE_PREFIX_1\n#define STANDARD_STARTFILE_PREFIX_1 "/tools/lib/"\n' >> gcc/config/linux.h | 
|---|
| [c1832da] | 44 | echo -en '\n#undef STANDARD_STARTFILE_PREFIX_2\n#define STANDARD_STARTFILE_PREFIX_2 ""\n' >> gcc/config/linux.h</userinput></screen> | 
|---|
| [d04ed61] | 45 |  | 
|---|
| [3cf4292] | 46 | <para os="t1">We will create a dummy <filename>limits.h</filename> so | 
|---|
|  | 47 | the build will not use the one provided by the host distro:</para> | 
|---|
| [562a0ae] | 48 |  | 
|---|
| [3309623] | 49 | <screen os="t2"><userinput>touch /tools/include/limits.h</userinput></screen> | 
|---|
| [562a0ae] | 50 |  | 
|---|
| [dabbced] | 51 | <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" | 
|---|
| [3f8be484] | 52 | href="../../final-system/common/gcc.xml" | 
|---|
|  | 53 | xpointer="xpointer(//*[@os='f'])"/> | 
|---|
|  | 54 |  | 
|---|
| [dabbced] | 55 | <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" | 
|---|
| [3f8be484] | 56 | href="../../final-system/common/gcc.xml" | 
|---|
|  | 57 | xpointer="xpointer(//*[@os='g'])"/> | 
|---|
|  | 58 |  | 
|---|
| [dabbced] | 59 | <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" | 
|---|
| [3f8be484] | 60 | href="../../final-system/common/gcc.xml" | 
|---|
|  | 61 | xpointer="xpointer(//*[@os='h'])"/> | 
|---|
|  | 62 |  | 
|---|
| [88958a8] | 63 | <screen os="al"><userinput>AR=ar LDFLAGS="-Wl,-rpath,/cross-tools/lib" \ | 
|---|
| [c1832da] | 64 | ../gcc-&gcc-version;/configure --prefix=/cross-tools \ | 
|---|
|  | 65 | --build=${CLFS_HOST} --host=${CLFS_HOST} --target=${CLFS_TARGET} \ | 
|---|
| [4dbd276] | 66 | --with-sysroot=${CLFS} --with-local-prefix=/tools \ | 
|---|
|  | 67 | --with-native-system-header-dir=/tools/include --disable-nls \ | 
|---|
| [12049296] | 68 | --disable-shared --with-mpfr=/cross-tools --with-gmp=/cross-tools \ | 
|---|
| [52fd35b] | 69 | --with-isl=/cross-tools --with-cloog=/cross-tools --with-mpc=/cross-tools \ | 
|---|
|  | 70 | --without-headers --with-newlib --disable-decimal-float --disable-libgomp \ | 
|---|
|  | 71 | --disable-libmudflap --disable-libssp --disable-threads --disable-multilib \ | 
|---|
|  | 72 | --disable-libatomic --disable-libitm --disable-libsanitizer \ | 
|---|
|  | 73 | --disable-libquadmath --disable-target-libiberty --disable-target-zlib \ | 
|---|
| [3c54c0a] | 74 | --with-system-zlib --enable-cloog-backend=isl --disable-isl-version-check \ | 
|---|
|  | 75 | --enable-languages=c --enable-checking=release</userinput></screen> | 
|---|
| [3f8be484] | 76 |  | 
|---|
| [d55f00bc] | 77 | <variablelist os="am"> | 
|---|
| [d755bc7] | 78 | <title>The meaning of the new configure options:</title> | 
|---|
| [26b5617] | 79 |  | 
|---|
|  | 80 | <varlistentry> | 
|---|
|  | 81 | <term><parameter>--with-sysroot=${CLFS}</parameter></term> | 
|---|
|  | 82 | <listitem> | 
|---|
| [d755bc7] | 83 | <para>Tells GCC to consider ${CLFS} as the root file system.</para> | 
|---|
| [26b5617] | 84 | </listitem> | 
|---|
|  | 85 | </varlistentry> | 
|---|
|  | 86 |  | 
|---|
| [3f8be484] | 87 | <varlistentry> | 
|---|
|  | 88 | <term><parameter>--with-local-prefix=/tools</parameter></term> | 
|---|
|  | 89 | <listitem> | 
|---|
|  | 90 | <para>The purpose of this switch is to remove <filename | 
|---|
|  | 91 | class="directory">/usr/local/include</filename> from | 
|---|
|  | 92 | <command>gcc</command>'s include search path. This is not | 
|---|
|  | 93 | absolutely essential, however, it helps to minimize the | 
|---|
|  | 94 | influence of the host system.</para> | 
|---|
|  | 95 | </listitem> | 
|---|
|  | 96 | </varlistentry> | 
|---|
|  | 97 |  | 
|---|
| [4dbd276] | 98 |  | 
|---|
|  | 99 | <varlistentry> | 
|---|
|  | 100 | <term><parameter>--with-native-system-headers-dir=/tools/include</parameter></term> | 
|---|
|  | 101 | <listitem> | 
|---|
|  | 102 | <para>This switch ensures that GCC will search for the system headers | 
|---|
|  | 103 | in <filename class="directory">/tools/include</filename> and that | 
|---|
|  | 104 | host system headers will not be searched.</para> | 
|---|
|  | 105 | </listitem> | 
|---|
|  | 106 | </varlistentry> | 
|---|
|  | 107 |  | 
|---|
| [26b5617] | 108 | <varlistentry> | 
|---|
|  | 109 | <term><parameter>--disable-nls</parameter></term> | 
|---|
|  | 110 | <listitem> | 
|---|
| [4dbd276] | 111 | <para>This disables internationalization as i18n is not needed for the | 
|---|
| [26b5617] | 112 | cross-compile tools.</para> | 
|---|
|  | 113 | </listitem> | 
|---|
|  | 114 | </varlistentry> | 
|---|
|  | 115 |  | 
|---|
|  | 116 | <varlistentry> | 
|---|
|  | 117 | <term><parameter>--without-headers</parameter></term> | 
|---|
|  | 118 | <listitem> | 
|---|
|  | 119 | <para>Disables GCC from using the target's Libc when cross compiling.</para> | 
|---|
|  | 120 | </listitem> | 
|---|
|  | 121 | </varlistentry> | 
|---|
|  | 122 |  | 
|---|
|  | 123 | <varlistentry> | 
|---|
|  | 124 | <term><parameter>--with-newlib</parameter></term> | 
|---|
|  | 125 | <listitem> | 
|---|
|  | 126 | <para>Tells GCC that the target libc will use 'newlib'.</para> | 
|---|
|  | 127 | </listitem> | 
|---|
|  | 128 | </varlistentry> | 
|---|
|  | 129 |  | 
|---|
|  | 130 | <varlistentry> | 
|---|
|  | 131 | <term><parameter>--disable-decimal-float</parameter></term> | 
|---|
|  | 132 | <listitem> | 
|---|
|  | 133 | <para>Disables support for the C decimal floating point extension.</para> | 
|---|
|  | 134 | </listitem> | 
|---|
|  | 135 | </varlistentry> | 
|---|
|  | 136 |  | 
|---|
|  | 137 | <varlistentry> | 
|---|
|  | 138 | <term><parameter>--disable-libgomp</parameter></term> | 
|---|
|  | 139 | <listitem> | 
|---|
|  | 140 | <para>Disables the creation of runtime libraries used by GOMP.</para> | 
|---|
|  | 141 | </listitem> | 
|---|
|  | 142 | </varlistentry> | 
|---|
|  | 143 |  | 
|---|
|  | 144 | <varlistentry> | 
|---|
|  | 145 | <term><parameter>--disable-libmudflap</parameter></term> | 
|---|
|  | 146 | <listitem> | 
|---|
|  | 147 | <para>Disables the creation of runtime libaries used by libmudflap.</para> | 
|---|
|  | 148 | </listitem> | 
|---|
|  | 149 | </varlistentry> | 
|---|
|  | 150 |  | 
|---|
|  | 151 | <varlistentry> | 
|---|
|  | 152 | <term><parameter>--disable-libssp</parameter></term> | 
|---|
|  | 153 | <listitem> | 
|---|
|  | 154 | <para>Disables the use of Stack Smashing Protection for runtime libraries.</para> | 
|---|
|  | 155 | </listitem> | 
|---|
|  | 156 | </varlistentry> | 
|---|
|  | 157 |  | 
|---|
| [3f8be484] | 158 | <varlistentry> | 
|---|
|  | 159 | <term><parameter>--disable-threads</parameter></term> | 
|---|
|  | 160 | <listitem> | 
|---|
| [193315c] | 161 | <para>This will prevent GCC from looking for the multi-thread | 
|---|
| [6d4c909] | 162 | include files, since they haven't been created for this architecture | 
|---|
|  | 163 | yet. GCC will be able to find the multi-thread information after | 
|---|
|  | 164 | the Glibc headers are created.</para> | 
|---|
| [3f8be484] | 165 | </listitem> | 
|---|
|  | 166 | </varlistentry> | 
|---|
|  | 167 |  | 
|---|
| [4dbd276] | 168 | <varlistentry> | 
|---|
|  | 169 | <term><parameter>--disable-libatomic</parameter></term> | 
|---|
|  | 170 | <listitem> | 
|---|
|  | 171 | <para>The atomic library isn't needed at this time.</para> | 
|---|
|  | 172 | </listitem> | 
|---|
|  | 173 | </varlistentry> | 
|---|
|  | 174 |  | 
|---|
|  | 175 | <varlistentry> | 
|---|
|  | 176 | <term><parameter>--disable-libitm</parameter></term> | 
|---|
|  | 177 | <listitem> | 
|---|
|  | 178 | <para>The itm library isn't neeeded at this tiem.</para> | 
|---|
|  | 179 | </listitem> | 
|---|
|  | 180 | </varlistentry> | 
|---|
|  | 181 |  | 
|---|
|  | 182 | <varlistentry> | 
|---|
|  | 183 | <term><parameter>--disable-libsanitizer</parameter></term> | 
|---|
|  | 184 | <listitem> | 
|---|
|  | 185 | <para>The sanitizer library isn't needed at this time.</para> | 
|---|
|  | 186 | </listitem> | 
|---|
|  | 187 | </varlistentry> | 
|---|
|  | 188 |  | 
|---|
|  | 189 | <varlistentry> | 
|---|
|  | 190 | <term><parameter>--disable-libquadmath</parameter></term> | 
|---|
|  | 191 | <listitem> | 
|---|
|  | 192 | <para>The quadmath library isn't needed at this time.</para> | 
|---|
|  | 193 | </listitem> | 
|---|
|  | 194 | </varlistentry> | 
|---|
|  | 195 |  | 
|---|
| [3f8be484] | 196 | <varlistentry> | 
|---|
|  | 197 | <term><parameter>--enable-languages=c</parameter></term> | 
|---|
|  | 198 | <listitem> | 
|---|
|  | 199 | <para>This option ensures that only the C compiler is built.</para> | 
|---|
|  | 200 | </listitem> | 
|---|
|  | 201 | </varlistentry> | 
|---|
|  | 202 |  | 
|---|
| [4dbd276] | 203 | <varlistentry> | 
|---|
|  | 204 | <term><parameter>--enable-checking=release</parameter></term> | 
|---|
|  | 205 | <listitem> | 
|---|
|  | 206 | <para>This option selects the complexity of the internal consistency checks and adds error checking within the compiler.</para> | 
|---|
|  | 207 | </listitem> | 
|---|
|  | 208 | </varlistentry> | 
|---|
|  | 209 |  | 
|---|
| [3f8be484] | 210 | </variablelist> | 
|---|
|  | 211 |  | 
|---|
| [d55f00bc] | 212 | <para os="an">Continue with compiling the package:</para> | 
|---|
| [3f8be484] | 213 |  | 
|---|
| [4651341] | 214 | <screen os="ao"><userinput>make all-gcc all-target-libgcc</userinput></screen> | 
|---|
| [3f8be484] | 215 |  | 
|---|
| [d755bc7] | 216 | <variablelist os="ap"> | 
|---|
|  | 217 | <title>The meaning of the new make options:</title> | 
|---|
|  | 218 |  | 
|---|
|  | 219 | <varlistentry> | 
|---|
|  | 220 | <term><parameter>all-gcc all-target-libgcc</parameter></term> | 
|---|
|  | 221 | <listitem> | 
|---|
|  | 222 | <para>Compiles only the parts of GCC that are needed at this time, | 
|---|
|  | 223 | rather than the full package.</para> | 
|---|
|  | 224 | </listitem> | 
|---|
|  | 225 | </varlistentry> | 
|---|
|  | 226 |  | 
|---|
|  | 227 | </variablelist> | 
|---|
|  | 228 |  | 
|---|
|  | 229 | <para os="aq">Install the package:</para> | 
|---|
| [3f8be484] | 230 |  | 
|---|
| [d755bc7] | 231 | <screen os="ar"><userinput>make install-gcc install-target-libgcc</userinput></screen> | 
|---|
| [3f8be484] | 232 |  | 
|---|
|  | 233 | </sect2> | 
|---|
|  | 234 |  | 
|---|
|  | 235 | <sect2 role="content"> | 
|---|
|  | 236 | <title/> | 
|---|
|  | 237 |  | 
|---|
|  | 238 | <para>Details on this package are located in <xref | 
|---|
|  | 239 | linkend="contents-gcc" role="."/></para> | 
|---|
|  | 240 |  | 
|---|
|  | 241 | </sect2> | 
|---|
|  | 242 |  | 
|---|
|  | 243 | </sect1> | 
|---|