gcc.xml 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
  3. <!ENTITY % general-entities SYSTEM "../general.ent">
  4. %general-entities;
  5. ]>
  6. <sect1 id="ch-system-gcc" xreflabel="GCC" role="wrap">
  7. <title>GCC-&gcc-version;</title>
  8. <?dbhtml filename="gcc.html"?>
  9. <indexterm zone="ch-system-gcc"><primary sortas="a-GCC">GCC</primary></indexterm>
  10. <sect2 role="package"><title/>
  11. <para>The GCC package contains the GNU compiler collection, which includes
  12. the C and C++ compilers.</para>
  13. <segmentedlist>
  14. <segtitle>&buildtime;</segtitle>
  15. <segtitle>&diskspace;</segtitle>
  16. <seglistitem><seg>11.7 SBU</seg><seg>294 MB</seg></seglistitem>
  17. </segmentedlist>
  18. <segmentedlist>
  19. <segtitle>GCC installation depends on</segtitle>
  20. <seglistitem><seg>Bash, Binutils, Coreutils, Diffutils, Findutils,
  21. Gawk, Gettext, Glibc, Grep, Make, Perl, Sed, Texinfo</seg></seglistitem>
  22. </segmentedlist>
  23. </sect2>
  24. <sect2 role="installation">
  25. <title>Installation of GCC</title>
  26. <para>This package is known to behave badly when you have changed its
  27. default optimization flags (including the <parameter>-march</parameter> and <parameter>-mcpu</parameter> options).
  28. Therefore, if you have defined any environment variables that override
  29. default optimizations, such as CFLAGS and CXXFLAGS, we recommend un-setting
  30. or modifying them when building GCC.</para>
  31. <para>Unpack the GCC-core <emphasis>and</emphasis> the GCC-g++ tarball -- they
  32. will unfold into the same directory. You should likewise extract the
  33. GCC-testsuite package. The full GCC package contains even more
  34. compilers. Instructions for building these can be found at
  35. <ulink url="&blfs-root;view/stable/general/gcc.html"/>.</para>
  36. <para>First apply only the No-Fixincludes patch (and <emphasis>not</emphasis>
  37. the Specs patch) also used in the previous chapter:</para>
  38. <screen><userinput>patch -Np1 -i ../gcc-&gcc-version;-no_fixincludes-1.patch</userinput></screen>
  39. <para>GCC fails to compile some packages outside of a base Linux From Scratch
  40. install (e.g., Mozilla and kdegraphics) when used in conjunction with newer
  41. versions of binutils. Apply the following patch to fix this issue:</para>
  42. <screen><userinput>patch -Np1 -i ../gcc-&gcc-version;-linkonce-1.patch</userinput></screen>
  43. <para>Now apply a sed substitution that will suppress the installation of
  44. <filename class="libraryfile">libiberty.a</filename>. We want to use the version of
  45. <filename class="libraryfile">libiberty.a</filename> provided by Binutils:</para>
  46. <screen><userinput>sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in</userinput></screen>
  47. <para>The GCC documentation recommends building GCC outside of the source
  48. directory in a dedicated build directory:</para>
  49. <screen><userinput>mkdir ../gcc-build
  50. cd ../gcc-build</userinput></screen>
  51. <para>Now prepare GCC for compilation:</para>
  52. <screen><userinput>../gcc-&gcc-version;/configure --prefix=/usr \
  53. --libexecdir=/usr/lib --enable-shared --enable-threads=posix \
  54. --enable-__cxa_atexit --enable-clocale=gnu --enable-languages=c,c++</userinput></screen>
  55. <para>Compile the package:</para>
  56. <screen><userinput>make</userinput></screen>
  57. <important><para>The test suite for GCC in this section is considered
  58. <emphasis>critical</emphasis>. Our advice is to not skip it under any
  59. circumstance.</para></important>
  60. <para>Test the results, but don't stop at errors (you'll remember the few
  61. known ones):</para>
  62. <screen><userinput>make -k check</userinput></screen>
  63. <para>The test suite notes from <xref linkend="ch-tools-gcc-pass2"/> are still very
  64. much appropriate here. Be sure to refer back there should you have any
  65. doubts.</para>
  66. <para>Now install the package:</para>
  67. <screen><userinput>make install</userinput></screen>
  68. <para>Some packages expect the C PreProcessor to be installed in the
  69. <filename class="directory">/lib</filename> directory.
  70. To support those packages, create this symlink:</para>
  71. <screen><userinput>ln -s ../usr/bin/cpp /lib</userinput></screen>
  72. <para>Many packages use the name <command>cc</command> to call the C
  73. compiler. To satisfy those packages, create a symlink:</para>
  74. <screen><userinput>ln -s gcc /usr/bin/cc</userinput></screen>
  75. <note><para>At this point it is strongly recommended to repeat the sanity check
  76. we performed earlier in this chapter. Refer back to
  77. <xref linkend="ch-system-readjusting"/> and repeat the check. If the results
  78. are wrong, then most likely you erroneously applied the GCC Specs patch from
  79. <xref linkend="chapter-temporary-tools"/>.</para></note>
  80. </sect2>
  81. <sect2 id="contents-gcc" role="content"><title>Contents of GCC</title>
  82. <segmentedlist>
  83. <segtitle>Installed programs</segtitle>
  84. <segtitle>Installed libraries</segtitle>
  85. <seglistitem><seg>c++, cc (link to gcc),
  86. cc1, cc1plus, collect2, cpp, g++, gcc, gccbug, and gcov</seg>
  87. <seg>libgcc.a, libgcc_eh.a, libgcc_s.so, libstdc++.[a,so] and libsupc++.a</seg></seglistitem>
  88. </segmentedlist>
  89. <variablelist><title>Short descriptions</title>
  90. <varlistentry id="cpp">
  91. <term><command>cpp</command></term>
  92. <listitem>
  93. <indexterm zone="ch-system-gcc cpp"><primary sortas="b-cpp">cpp</primary></indexterm>
  94. <para>is the C preprocessor. It is used by the compiler to have the #include and
  95. #define and such statements expanded in the source files.</para>
  96. </listitem>
  97. </varlistentry>
  98. <varlistentry id="g">
  99. <term><command>g++</command></term>
  100. <listitem>
  101. <indexterm zone="ch-system-gcc g"><primary sortas="b-g++">g++</primary></indexterm>
  102. <para>is the C++ compiler.</para>
  103. </listitem>
  104. </varlistentry>
  105. <varlistentry id="gcc">
  106. <term><command>gcc</command></term>
  107. <listitem>
  108. <indexterm zone="ch-system-gcc gcc"><primary sortas="b-gcc">gcc</primary></indexterm>
  109. <para>is the C compiler. It is used to translate
  110. the source code of a program into assembly code.</para>
  111. </listitem>
  112. </varlistentry>
  113. <varlistentry id="gccbug">
  114. <term><command>gccbug</command></term>
  115. <listitem>
  116. <indexterm zone="ch-system-gcc gccbug"><primary sortas="b-gccbug">gccbug</primary></indexterm>
  117. <para>is a shell script used to help create good bug reports.</para>
  118. </listitem>
  119. </varlistentry>
  120. <varlistentry id="gcov">
  121. <term><command>gcov</command></term>
  122. <listitem>
  123. <indexterm zone="ch-system-gcc gcov"><primary sortas="b-gcov">gcov</primary></indexterm>
  124. <para>is a coverage testing tool. It is used to
  125. analyze programs to find out where optimizations will have the most effect.</para>
  126. </listitem>
  127. </varlistentry>
  128. <varlistentry id="libgcc">
  129. <term><filename class="libraryfile">libgcc*</filename></term>
  130. <listitem>
  131. <indexterm zone="ch-system-gcc libgcc"><primary sortas="c-libgcc*">libgcc*</primary></indexterm>
  132. <para>contains run-time support for <command>gcc</command>.</para>
  133. </listitem>
  134. </varlistentry>
  135. <varlistentry id="libstdc">
  136. <term><filename class="libraryfile">libstdc++</filename></term>
  137. <listitem>
  138. <indexterm zone="ch-system-gcc libstdc"><primary sortas="c-libstdc++">libstdc++</primary></indexterm>
  139. <para>is the standard C++ library. It contains many frequently-used functions.</para>
  140. </listitem>
  141. </varlistentry>
  142. <varlistentry id="libsupc">
  143. <term><filename class="libraryfile">libsupc++</filename></term>
  144. <listitem>
  145. <indexterm zone="ch-system-gcc libsupc"><primary sortas="c-libsupc++">libsupc++</primary></indexterm>
  146. <para>provides supporting routines for the c++ programming language.</para>
  147. </listitem>
  148. </varlistentry>
  149. </variablelist>
  150. </sect2>
  151. </sect1>