gcc-pass2.xml 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <sect1 id="ch05-gcc-pass2">
  2. <title>Installing GCC-&gcc-version; - Pass 2</title>
  3. <?dbhtml filename="gcc-pass2.html" dir="chapter05"?>
  4. <screen>Estimated build time: &gcc-time-tools-pass2;
  5. Estimated required disk space: &gcc-compsize-tools-pass2;</screen>
  6. &aa-gcc-down;
  7. &aa-gcc-dep;
  8. <sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
  9. <sect2>
  10. <title>Re-installation of GCC</title>
  11. <para>The tools required to test GCC and Binutils are installed now (Tcl, Expect
  12. and DejaGnu). We can continue on rebuilding GCC and Binutils, link them against
  13. the new Glibc, and test them properly. One thing to note, however, is that these
  14. test suites are highly dependent on properly functioning pseudo terminals (PTYs)
  15. which are provided by your host distribution. These days, PTYs are most commonly
  16. implemented via the <emphasis>devpts</emphasis> file system. You can quickly
  17. check if your host system is set up correctly in this regard by performing a
  18. simple test:</para>
  19. <screen><userinput>expect -c "spawn ls"</userinput></screen>
  20. <para>If you receive the message:</para>
  21. <blockquote><screen>The system has no more ptys. Ask your system administrator to create more.</screen></blockquote>
  22. <para>Your host distribution is not set up for proper PTY operation. In this
  23. case there is no point in running the test suites for GCC and Binutils until you
  24. are able to resolve the issue. You can consult the LFS Wiki at
  25. <ulink url="http://wiki.linuxfromscratch.org/"/> for more information on how to
  26. get PTYs working.</para>
  27. <para>This time we will build both the C and the C++ compilers, so you'll have
  28. to unpack all three GCC tarballs (-core, -g++, and -testsuite) in one and the
  29. same working directory. They will all unfold into a single
  30. <filename>gcc-&gcc-version;/</filename> subdirectory.</para>
  31. <para>First correct one problem and make an essential adjustment:</para>
  32. <screen><userinput>patch -Np1 -i ../&gcc-nofixincludes-patch;
  33. patch -Np1 -i ../&gcc-specs-patch;</userinput></screen>
  34. <para>The first patch disables the GCC "fixincludes" script. We mentioned this
  35. briefly earlier, but a slightly more in-depth explanation of the fixincludes
  36. process is warranted here. Under normal circumstances, the GCC fixincludes
  37. script scans your system for header files that need to be fixed. It might find
  38. that some Glibc header files on your host system need to be fixed, fix them and
  39. put them in the GCC private include directory. Then, later on in
  40. <xref linkend="chapter06"/>, after we've installed the newer Glibc, this
  41. private include directory would be searched before the system include
  42. directory, resulting in GCC finding the fixed headers from the host system,
  43. which would most likely not match the Glibc version actually used for the LFS
  44. system.</para>
  45. <para>The last patch changes GCC's default location of the dynamic linker
  46. (typically <filename>ld-linux.so.2</filename>). It also removes
  47. <filename class="directory">/usr/include</filename> from GCC's include search
  48. path. Patching now rather than adjusting the specs file after installation
  49. ensures that our new dynamic linker gets used during the actual build of GCC.
  50. That is, all the final (and temporary) binaries created during the build will
  51. link against the new Glibc.</para>
  52. <important><para>The above patches are <emphasis>critical</emphasis> in ensuring
  53. a successful overall build. Do not forget to apply them.</para></important>
  54. <para>Create a separate build directory again:</para>
  55. <screen><userinput>mkdir ../gcc-build
  56. cd ../gcc-build</userinput></screen>
  57. <para>Before starting to build GCC, remember to unset any environment
  58. variables that override the default optimization flags.</para>
  59. <para>Now prepare GCC for compilation:</para>
  60. <screen><userinput>../gcc-&gcc-version;/configure --prefix=/tools \
  61. &nbsp;&nbsp;&nbsp;&nbsp;--with-local-prefix=/tools \
  62. &nbsp;&nbsp;&nbsp;&nbsp;--enable-clocale=gnu --enable-shared \
  63. &nbsp;&nbsp;&nbsp;&nbsp;--enable-threads=posix --enable-__cxa_atexit \
  64. &nbsp;&nbsp;&nbsp;&nbsp;--enable-languages=c,c++</userinput></screen>
  65. <para>The meaning of the new configure options:</para>
  66. <itemizedlist>
  67. <listitem><para><userinput>--enable-threads=posix</userinput>: This enables
  68. C++ exception handling for multi-threaded code.</para></listitem>
  69. <listitem><para><userinput>--enable-__cxa_atexit</userinput>: This option
  70. allows use of __cxa_atexit, rather than atexit, to register C++ destructors for
  71. local statics and global objects and is essential for fully standards-compliant
  72. handling of destructors. It also affects the C++ ABI and therefore results in
  73. C++ shared libraries and C++ programs that are interoperable with other Linux
  74. distributions.</para></listitem>
  75. <listitem><para><userinput>--enable-clocale=gnu</userinput>: This option ensures
  76. the correct locale model is selected for the C++ libraries under all
  77. circumstances. If the configure script finds the <emphasis>de_DE</emphasis>
  78. locale installed, it will select the correct model of <emphasis>gnu</emphasis>.
  79. However, people who don't install the <emphasis>de_DE</emphasis> locale, run the
  80. risk of building ABI incompatible C++ libraries due to the wrong locale model of
  81. <emphasis>generic</emphasis> being selected.</para></listitem>
  82. <listitem><para><userinput>--enable-languages=c,c++</userinput>: This option is
  83. needed to ensure that both C and C++ compilers are built.</para></listitem>
  84. </itemizedlist>
  85. <para>Compile the package:</para>
  86. <screen><userinput>make</userinput></screen>
  87. <para>There is no need to use the <userinput>bootstrap</userinput> target now,
  88. as the compiler we're using to compile this GCC was built from the exact same
  89. version of the GCC sources we used earlier.</para>
  90. <note><para>It's worth pointing out that running the GCC test suite here
  91. is considered not as important as running it in
  92. <xref linkend="chapter06"/>.</para></note>
  93. <para>Test the results:</para>
  94. <screen><userinput>make -k check</userinput></screen>
  95. <para>The <userinput>-k</userinput> flag is used to make the test suite run
  96. through to completion and not stop at the first failure. The GCC test suite is
  97. very comprehensive and is almost guaranteed to generate a few failures. To get
  98. a summary of the test suite results, run this:</para>
  99. <screen><userinput>../gcc-&gcc-version;/contrib/test_summary | more</userinput></screen>
  100. <para>You can compare your results to those posted to the gcc-testresults
  101. mailing list for similar configurations to your own. For an example of how
  102. current GCC-&gcc-version; should look on i686-pc-linux-gnu, see
  103. <ulink url="http://gcc.gnu.org/ml/gcc-testresults/2003-10/msg00803.html"/>.</para>
  104. <para>Note that the results contain:</para>
  105. <screen>* 1 XPASS (unexpected pass) for g++
  106. * 1 FAIL (unexpected failure) for gcc
  107. * 26 XPASS's for libstdc++</screen>
  108. <para>The unexpected pass for g++ is due to the use of
  109. <userinput>--enable-__cxa_atexit</userinput>. Apparently not all platforms
  110. supported by GCC have support for "__cxa_atexit" in their C libraries, so this
  111. test is not always expected to pass.</para>
  112. <para>The 26 unexpected passes for libstdc++ are due to the use of
  113. <userinput>--enable-clocale=gnu</userinput>, which is the correct choice on
  114. Glibc-based systems of versions 2.2.5 and above. The underlying locale support
  115. in the GNU C library is superior to that of the otherwise selected "generic"
  116. model (which may be applicable if for instance you were using Newlibc, Sun-libc
  117. or whatever libc). The libstdc++ test suite is apparently expecting the
  118. "generic" model, hence those tests are not always expected to pass.</para>
  119. <para>Unexpected failures often cannot be avoided. The GCC developers are
  120. usually aware of them but haven't yet gotten around to fixing them. In short,
  121. unless your results are vastly different from those at the above URL, it is safe
  122. to continue on.</para>
  123. <para>And finally install the package:</para>
  124. <screen><userinput>make install</userinput></screen>
  125. <note><para>At this point it is strongly recommended to repeat the sanity check
  126. we performed earlier in the chapter. Refer back to
  127. <xref linkend="ch05-locking-glibc"/> and repeat the check. If the results are
  128. wrong, then most likely you forgot to apply the above mentioned GCC Specs
  129. patch.</para></note>
  130. </sect2>
  131. <sect2><title>&nbsp;</title><para>&nbsp;</para>
  132. <para>The details on this package are found in <xref linkend="contents-gcc"/>.</para>
  133. <para>&nbsp;</para></sect2>
  134. </sect1>