| 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-system-gcc" role="wrap">
 | 
|---|
| 9 |   <?dbhtml filename="gcc.html"?>
 | 
|---|
| 10 | 
 | 
|---|
| 11 |   <title>GCC-&gcc-version;</title>
 | 
|---|
| 12 | 
 | 
|---|
| 13 |   <indexterm zone="ch-system-gcc">
 | 
|---|
| 14 |     <primary sortas="a-GCC">GCC</primary>
 | 
|---|
| 15 |   </indexterm>
 | 
|---|
| 16 | 
 | 
|---|
| 17 |   <sect2 role="package">
 | 
|---|
| 18 |     <title/>
 | 
|---|
| 19 | 
 | 
|---|
| 20 |     <para>The GCC package contains the GNU compiler collection, which includes
 | 
|---|
| 21 |     the C and C++ compilers.</para>
 | 
|---|
| 22 | 
 | 
|---|
| 23 |   </sect2>
 | 
|---|
| 24 | 
 | 
|---|
| 25 |   <sect2 role="installation">
 | 
|---|
| 26 |     <title>Installation of GCC</title>
 | 
|---|
| 27 | 
 | 
|---|
| 28 |     <para os="p1">To make sure that a couple of tools use the proper syntax,
 | 
|---|
| 29 |     apply the following patch:</para>
 | 
|---|
| 30 | 
 | 
|---|
| 31 | <screen os="p2"><userinput>patch -Np1 -i ../&gcc-posix-patch;</userinput></screen>
 | 
|---|
| 32 | 
 | 
|---|
| 33 |     <para os="p3">The following patch contains a number of updates to the
 | 
|---|
| 34 |     &gcc-version; branch by the GCC developers:</para>
 | 
|---|
| 35 | 
 | 
|---|
| 36 | <screen os="p4"><userinput>patch -Np1 -i ../&gcc-branch_update-patch;</userinput></screen>
 | 
|---|
| 37 | 
 | 
|---|
| 38 |     <para os="a">Apply a <command>sed</command> substitution that will suppress the
 | 
|---|
| 39 |     installation of <filename class="libraryfile">libiberty.a</filename>. The
 | 
|---|
| 40 |     version of <filename class="libraryfile">libiberty.a</filename> provided by
 | 
|---|
| 41 |     Binutils will be used instead:</para>
 | 
|---|
| 42 | 
 | 
|---|
| 43 | <screen os="b"><userinput>cp libiberty/Makefile.in{,.orig}
 | 
|---|
| 44 | sed 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in.orig > \
 | 
|---|
| 45 |     libiberty/Makefile.in</userinput></screen>
 | 
|---|
| 46 | 
 | 
|---|
| 47 |     <para os="e1">GCC provides a <command>gccbug</command> script which detects at
 | 
|---|
| 48 |     compile time whether <command>mktemp</command> is present, and hardcodes
 | 
|---|
| 49 |     the result in a test. If <command>mktemp</command> is not found, the
 | 
|---|
| 50 |     script will fall back to using less random names for temporary files.
 | 
|---|
| 51 |     <command>mktemp</command> will be installed as part of Coreutils
 | 
|---|
| 52 |     later, so the following <command>sed</command> will simulate its presence:</para>
 | 
|---|
| 53 | 
 | 
|---|
| 54 | <screen os="e2"><userinput>cp gcc/gccbug.in{,.orig}
 | 
|---|
| 55 | sed 's/@have_mktemp_command@/yes/' gcc/gccbug.in.orig > gcc/gccbug.in</userinput></screen>
 | 
|---|
| 56 | 
 | 
|---|
| 57 |     <para os="s1">The <command>fixincludes</command> script attempts to "fix"
 | 
|---|
| 58 |     the system headers installed so far. Since GCC is cross-compiled expecting
 | 
|---|
| 59 |     the system headers to be in <filename class="directory">/usr/include</filename>,
 | 
|---|
| 60 |     the script will be looking at the host system's headers. The following sed
 | 
|---|
| 61 |     prevents <command>fixincludes</command> from running:</para>
 | 
|---|
| 62 | 
 | 
|---|
| 63 | <screen os="s2"><userinput>cp gcc/Makefile.in{,.orig}
 | 
|---|
| 64 | sed 's@\./fixinc\.sh@-c true@' gcc/Makefile.in.orig > gcc/Makefile.in</userinput></screen>
 | 
|---|
| 65 | 
 | 
|---|
| 66 |     <para os="c">The GCC documentation recommends building GCC outside of the source
 | 
|---|
| 67 |     directory in a dedicated build directory:</para>
 | 
|---|
| 68 | 
 | 
|---|
| 69 | <screen os="d"><userinput>mkdir -v ../gcc-build
 | 
|---|
| 70 | cd ../gcc-build</userinput></screen>
 | 
|---|
| 71 | 
 | 
|---|
| 72 |     <para os="e">Prepare GCC for compilation:</para>
 | 
|---|
| 73 | 
 | 
|---|
| 74 | <screen os="f"><userinput>../gcc-&gcc-version;/configure --prefix=/usr --libexecdir=/usr/lib \
 | 
|---|
| 75 |     --build=${CLFS_HOST} --host=${CLFS_TARGET} --target=${CLFS_TARGET} \
 | 
|---|
| 76 |     --enable-shared --enable-threads=posix --enable-__cxa_atexit \
 | 
|---|
| 77 |     --enable-c99 --enable-long-long --enable-clocale=gnu \
 | 
|---|
| 78 |     --enable-languages=c,c++ --disable-libstdcxx-pch</userinput></screen>
 | 
|---|
| 79 | 
 | 
|---|
| 80 |     <para os="g">Compile the package:</para>
 | 
|---|
| 81 | 
 | 
|---|
| 82 | <screen os="h"><userinput>make</userinput></screen>
 | 
|---|
| 83 | 
 | 
|---|
| 84 |     <para os="i">Install the package:</para>
 | 
|---|
| 85 | 
 | 
|---|
| 86 | <screen os="j"><userinput>make DESTDIR=${CLFS} install</userinput></screen>
 | 
|---|
| 87 | 
 | 
|---|
| 88 |     <para os="k">Some packages expect the C preprocessor to be installed in the
 | 
|---|
| 89 |     <filename class="directory">/lib</filename> directory.
 | 
|---|
| 90 |     To support those packages, create this symlink:</para>
 | 
|---|
| 91 | 
 | 
|---|
| 92 | <screen os="l"><userinput>ln -sfv ../usr/bin/cpp ${CLFS}/lib</userinput></screen>
 | 
|---|
| 93 | 
 | 
|---|
| 94 |     <para os="m">Many packages use the name <command>cc</command> to call the C
 | 
|---|
| 95 |     compiler. To satisfy those packages, create a symlink:</para>
 | 
|---|
| 96 | 
 | 
|---|
| 97 | <screen os="o"><userinput>ln -sfv gcc ${CLFS}/usr/bin/cc</userinput></screen>
 | 
|---|
| 98 | 
 | 
|---|
| 99 |   </sect2>
 | 
|---|
| 100 | 
 | 
|---|
| 101 |   <sect2 id="contents-gcc" role="content">
 | 
|---|
| 102 |     <title>Contents of GCC</title>
 | 
|---|
| 103 | 
 | 
|---|
| 104 |     <segmentedlist>
 | 
|---|
| 105 |       <segtitle>Installed programs</segtitle>
 | 
|---|
| 106 |       <segtitle>Installed libraries</segtitle>
 | 
|---|
| 107 | 
 | 
|---|
| 108 |       <seglistitem>
 | 
|---|
| 109 |         <seg>c++, cc (link to gcc), cpp, g++, gcc, gccbug, and gcov</seg>
 | 
|---|
| 110 |         <seg>libgcc.a, libgcc_eh.a, libgcc_s.so, libgomp.[a,so], libmudflap.[a,so],
 | 
|---|
| 111 |         libmudflapth.[a,so], libssp.[a,so], libstdc++.[a,so], and
 | 
|---|
| 112 |         libsupc++.a</seg>
 | 
|---|
| 113 |       </seglistitem>
 | 
|---|
| 114 |     </segmentedlist>
 | 
|---|
| 115 | 
 | 
|---|
| 116 |     <variablelist>
 | 
|---|
| 117 |       <bridgehead renderas="sect3">Short Descriptions</bridgehead>
 | 
|---|
| 118 |       <?dbfo list-presentation="list"?>
 | 
|---|
| 119 |       <?dbhtml list-presentation="table"?>
 | 
|---|
| 120 | 
 | 
|---|
| 121 |       <varlistentry id="cc">
 | 
|---|
| 122 |         <term><command>cc</command></term>
 | 
|---|
| 123 |         <listitem>
 | 
|---|
| 124 |           <para>The C compiler</para>
 | 
|---|
| 125 |           <indexterm zone="ch-system-gcc cc">
 | 
|---|
| 126 |             <primary sortas="b-cc">cc</primary>
 | 
|---|
| 127 |           </indexterm>
 | 
|---|
| 128 |         </listitem>
 | 
|---|
| 129 |       </varlistentry>
 | 
|---|
| 130 | 
 | 
|---|
| 131 |       <varlistentry id="cpp">
 | 
|---|
| 132 |         <term><command>cpp</command></term>
 | 
|---|
| 133 |         <listitem>
 | 
|---|
| 134 |           <para>The C preprocessor; it is used by the compiler to expand the
 | 
|---|
| 135 |           #include, #define, and similar statements in the source files</para>
 | 
|---|
| 136 |           <indexterm zone="ch-system-gcc cpp">
 | 
|---|
| 137 |             <primary sortas="b-cpp">cpp</primary>
 | 
|---|
| 138 |           </indexterm>
 | 
|---|
| 139 |         </listitem>
 | 
|---|
| 140 |       </varlistentry>
 | 
|---|
| 141 | 
 | 
|---|
| 142 |       <varlistentry id="c">
 | 
|---|
| 143 |         <term><command>c++</command></term>
 | 
|---|
| 144 |         <listitem>
 | 
|---|
| 145 |           <para>The C++ compiler</para>
 | 
|---|
| 146 |           <indexterm zone="ch-system-gcc c">
 | 
|---|
| 147 |             <primary sortas="b-c++">c++</primary>
 | 
|---|
| 148 |           </indexterm>
 | 
|---|
| 149 |         </listitem>
 | 
|---|
| 150 |       </varlistentry>
 | 
|---|
| 151 | 
 | 
|---|
| 152 |       <varlistentry id="g">
 | 
|---|
| 153 |         <term><command>g++</command></term>
 | 
|---|
| 154 |         <listitem>
 | 
|---|
| 155 |           <para>The C++ compiler</para>
 | 
|---|
| 156 |           <indexterm zone="ch-system-gcc g">
 | 
|---|
| 157 |             <primary sortas="b-g++">g++</primary>
 | 
|---|
| 158 |           </indexterm>
 | 
|---|
| 159 |         </listitem>
 | 
|---|
| 160 |       </varlistentry>
 | 
|---|
| 161 | 
 | 
|---|
| 162 |       <varlistentry id="gcc">
 | 
|---|
| 163 |         <term><command>gcc</command></term>
 | 
|---|
| 164 |         <listitem>
 | 
|---|
| 165 |           <para>The C compiler</para>
 | 
|---|
| 166 |           <indexterm zone="ch-system-gcc gcc">
 | 
|---|
| 167 |             <primary sortas="b-gcc">gcc</primary>
 | 
|---|
| 168 |           </indexterm>
 | 
|---|
| 169 |         </listitem>
 | 
|---|
| 170 |       </varlistentry>
 | 
|---|
| 171 | 
 | 
|---|
| 172 |       <varlistentry id="gccbug">
 | 
|---|
| 173 |         <term><command>gccbug</command></term>
 | 
|---|
| 174 |         <listitem>
 | 
|---|
| 175 |           <para>A shell script used to help create useful bug reports</para>
 | 
|---|
| 176 |           <indexterm zone="ch-system-gcc gccbug">
 | 
|---|
| 177 |             <primary sortas="b-gccbug">gccbug</primary>
 | 
|---|
| 178 |           </indexterm>
 | 
|---|
| 179 |         </listitem>
 | 
|---|
| 180 |       </varlistentry>
 | 
|---|
| 181 | 
 | 
|---|
| 182 |       <varlistentry id="gcov">
 | 
|---|
| 183 |         <term><command>gcov</command></term>
 | 
|---|
| 184 |         <listitem>
 | 
|---|
| 185 |           <para>A coverage testing tool; it is used to analyze programs to
 | 
|---|
| 186 |           determine where optimizations will have the most effect</para>
 | 
|---|
| 187 |           <indexterm zone="ch-system-gcc gcov">
 | 
|---|
| 188 |             <primary sortas="b-gcov">gcov</primary>
 | 
|---|
| 189 |           </indexterm>
 | 
|---|
| 190 |         </listitem>
 | 
|---|
| 191 |       </varlistentry>
 | 
|---|
| 192 | 
 | 
|---|
| 193 |       <varlistentry id="libgcc">
 | 
|---|
| 194 |         <term><filename class="libraryfile">libgcc</filename></term>
 | 
|---|
| 195 |         <listitem>
 | 
|---|
| 196 |           <para>Contains run-time support for <command>gcc</command></para>
 | 
|---|
| 197 |           <indexterm zone="ch-system-gcc libgcc">
 | 
|---|
| 198 |             <primary sortas="c-libgcc*">libgcc*</primary>
 | 
|---|
| 199 |           </indexterm>
 | 
|---|
| 200 |         </listitem>
 | 
|---|
| 201 |       </varlistentry>
 | 
|---|
| 202 | 
 | 
|---|
| 203 |       <varlistentry id="libmudflap">
 | 
|---|
| 204 |         <term><filename class="libraryfile">libmudflap</filename></term>
 | 
|---|
| 205 |         <listitem>
 | 
|---|
| 206 |           <para>The libmudflap libraries are used by GCC for instrumenting
 | 
|---|
| 207 |           pointer and array dereferencing operations.</para>
 | 
|---|
| 208 |           <indexterm zone="ch-system-gcc libmudflap">
 | 
|---|
| 209 |             <primary sortas="c-libmudflap*">libmudflap*</primary>
 | 
|---|
| 210 |           </indexterm>
 | 
|---|
| 211 |         </listitem>
 | 
|---|
| 212 |       </varlistentry>
 | 
|---|
| 213 | 
 | 
|---|
| 214 |       <varlistentry id="libstdc">
 | 
|---|
| 215 |         <term><filename class="libraryfile">libstdc++</filename></term>
 | 
|---|
| 216 |         <listitem>
 | 
|---|
| 217 |           <para>The standard C++ library</para>
 | 
|---|
| 218 |           <indexterm zone="ch-system-gcc libstdc">
 | 
|---|
| 219 |             <primary sortas="c-libstdc++">libstdc++</primary>
 | 
|---|
| 220 |           </indexterm>
 | 
|---|
| 221 |         </listitem>
 | 
|---|
| 222 |       </varlistentry>
 | 
|---|
| 223 | 
 | 
|---|
| 224 |       <varlistentry id="libsupc">
 | 
|---|
| 225 |         <term><filename class="libraryfile">libsupc++</filename></term>
 | 
|---|
| 226 |         <listitem>
 | 
|---|
| 227 |           <para>Provides supporting routines for the C++ programming
 | 
|---|
| 228 |           language</para>
 | 
|---|
| 229 |           <indexterm zone="ch-system-gcc libsupc">
 | 
|---|
| 230 |             <primary sortas="c-libsupc++">libsupc++</primary>
 | 
|---|
| 231 |           </indexterm>
 | 
|---|
| 232 |         </listitem>
 | 
|---|
| 233 |       </varlistentry>
 | 
|---|
| 234 | 
 | 
|---|
| 235 |     </variablelist>
 | 
|---|
| 236 | 
 | 
|---|
| 237 |   </sect2>
 | 
|---|
| 238 | 
 | 
|---|
| 239 | </sect1>
 | 
|---|