gcc.xml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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">
  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. <para>The GCC package contains the GNU compiler collection, which includes
  11. the C and C++ compilers.</para>
  12. <screen>&buildtime; 11.7 SBU
  13. &diskspace; 294 MB</screen>
  14. <para>GCC installation depends on: Bash, Binutils, Coreutils, Diffutils, Findutils,
  15. Gawk, Gettext, Glibc, Grep, Make, Perl, Sed, Texinfo.</para>
  16. <sect2>
  17. <title>Installation of GCC</title>
  18. <para>This package is known to behave badly when you have changed its
  19. default optimization flags (including the -march and -mcpu options).
  20. Therefore, if you have defined any environment variables that override
  21. default optimizations, such as CFLAGS and CXXFLAGS, we recommend un-setting
  22. or modifying them when building GCC.</para>
  23. <para>Unpack the GCC-core <emphasis>and</emphasis> the GCC-g++ tarball -- they
  24. will unfold into the same directory. You should likewise extract the
  25. GCC-testsuite package. The full GCC package contains even more
  26. compilers. Instructions for building these can be found at
  27. <ulink url="&blfs-root;view/stable/general/gcc.html"/>.</para>
  28. <para>First apply only the No-Fixincludes patch (and <emphasis>not</emphasis>
  29. the Specs patch) also used in the previous chapter:</para>
  30. <screen><userinput>patch -Np1 -i ../gcc-&gcc-version;-no_fixincludes-1.patch</userinput></screen>
  31. <para>Now apply a sed substitution that will suppress the installation of
  32. <filename>libiberty.a</filename>. We want to use the version of
  33. <filename>libiberty.a</filename> provided by Binutils:</para>
  34. <screen><userinput>sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in</userinput></screen>
  35. <para>The GCC documentation recommends building GCC outside of the source
  36. directory in a dedicated build directory:</para>
  37. <screen><userinput>mkdir ../gcc-build
  38. cd ../gcc-build</userinput></screen>
  39. <para>Now prepare GCC for compilation:</para>
  40. <screen><userinput>../gcc-&gcc-version;/configure --prefix=/usr \
  41. --libexecdir=/usr/lib --enable-shared --enable-threads=posix \
  42. --enable-__cxa_atexit --enable-clocale=gnu --enable-languages=c,c++
  43. </userinput></screen>
  44. <para>Compile the package:</para>
  45. <screen><userinput>make</userinput></screen>
  46. <important><para>The test suite for GCC in this section is considered
  47. <emphasis>critical</emphasis>. Our advice is to not skip it under any
  48. circumstance.</para></important>
  49. <para>Test the results, but don't stop at errors (you'll remember the few
  50. known ones):</para>
  51. <screen><userinput>make -k check</userinput></screen>
  52. <para>The test suite notes from <xref linkend="ch-tools-gcc-pass2"/> are still very
  53. much appropriate here. Be sure to refer back there should you have any
  54. doubts.</para>
  55. <para>Now install the package:</para>
  56. <screen><userinput>make install</userinput></screen>
  57. <para>Some packages expect the C PreProcessor to be installed in the
  58. <filename>/lib</filename> directory.
  59. To support those packages, create this symlink:</para>
  60. <screen><userinput>ln -s ../usr/bin/cpp /lib</userinput></screen>
  61. <para>Many packages use the name <command>cc</command> to call the C
  62. compiler. To satisfy those packages, create a symlink:</para>
  63. <screen><userinput>ln -s gcc /usr/bin/cc</userinput></screen>
  64. <note><para>At this point it is strongly recommended to repeat the sanity check
  65. we performed earlier in this chapter. Refer back to
  66. <xref linkend="ch-system-readjusting"/> and repeat the check. If the results
  67. are wrong, then most likely you erroneously applied the GCC Specs patch from
  68. <xref linkend="chapter-temporary-tools"/>.</para></note>
  69. </sect2>
  70. <sect2 id="contents-gcc"><title>Contents of GCC</title>
  71. <para><emphasis>Installed programs</emphasis>: c++, cc (link to gcc),
  72. cc1, cc1plus, collect2, cpp, g++, gcc, gccbug, and gcov</para>
  73. <para><emphasis>Installed libraries</emphasis>: libgcc.a, libgcc_eh.a,
  74. libgcc_s.so, libstdc++.[a,so] and libsupc++.a</para>
  75. </sect2>
  76. <sect2><title>Short descriptions</title>
  77. <indexterm zone="ch-system-gcc cpp"><primary sortas="b-cpp">cpp</primary></indexterm>
  78. <para id="cpp"><command>cpp</command> is the C preprocessor. It is used by the
  79. compiler to have the #include and #define and such statements expanded in
  80. the source files.</para>
  81. <indexterm zone="ch-system-gcc g"><primary sortas="b-g++">g++</primary></indexterm>
  82. <para id="g"><command>g++</command> is the C++ compiler.</para>
  83. <indexterm zone="ch-system-gcc gcc"><primary sortas="b-gcc">gcc</primary></indexterm>
  84. <para id="gcc"><command>gcc</command> is the C compiler. It is used to translate
  85. the source code of a program into assembly code.</para>
  86. <indexterm zone="ch-system-gcc gccbug"><primary sortas="b-gccbug">gccbug</primary></indexterm>
  87. <para id="gccbug"><command>gccbug</command> is a shell script used to help create
  88. good bug reports.</para>
  89. <indexterm zone="ch-system-gcc gcov"><primary sortas="b-gcov">gcov</primary></indexterm>
  90. <para id="gcov"><command>gcov</command> is a coverage testing tool. It is used to
  91. analyze programs to find out where optimizations will have the most effect.</para>
  92. <indexterm zone="ch-system-gcc libgcc"><primary sortas="c-libgcc*">libgcc*</primary></indexterm>
  93. <para id="libgcc"><command>libgcc*</command> contains run-time support for gcc.</para>
  94. <indexterm zone="ch-system-gcc libstdc"><primary sortas="c-libstdc++">libstdc++</primary></indexterm>
  95. <para id="libstdc"><command>libstdc++</command> is the standard C++ library. It contains
  96. many frequently-used functions.</para>
  97. <indexterm zone="ch-system-gcc libsupc"><primary sortas="c-libsupc++">libsupc++</primary></indexterm>
  98. <para id="libsupc"><command>libsupc++</command> provides supporting routines
  99. for the c++ programming language.</para>
  100. </sect2>
  101. </sect1>