glibc.xml 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. <?xml version="1.0" encoding="UTF-8"?>
  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. <sect1 id="ch-tools-glibc" role="wrap">
  8. <?dbhtml filename="glibc.html"?>
  9. <sect1info condition="script">
  10. <productname>glibc</productname>
  11. <productnumber>&glibc-version;</productnumber>
  12. <address>&glibc-url;</address>
  13. </sect1info>
  14. <title>Glibc-&glibc-version;</title>
  15. <indexterm zone="ch-tools-glibc">
  16. <primary sortas="a-Glibc">Glibc</primary>
  17. <secondary>tools</secondary>
  18. </indexterm>
  19. <sect2 role="package">
  20. <title/>
  21. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  22. href="../chapter06/glibc.xml"
  23. xpointer="xpointer(/sect1/sect2[1]/para[1])"/>
  24. <segmentedlist>
  25. <segtitle>&buildtime;</segtitle>
  26. <segtitle>&diskspace;</segtitle>
  27. <seglistitem>
  28. <seg>&glibc-ch5-sbu;</seg>
  29. <seg>&glibc-ch5-du;</seg>
  30. </seglistitem>
  31. </segmentedlist>
  32. </sect2>
  33. <sect2 role="installation">
  34. <title>安装 Glibc</title>
  35. <!--para>The Glibc documentation recommends building Glibc
  36. in a dedicated build directory:</para-->
  37. <para>Glibc 文档推荐在一个专用目录中构建 Glibc:</para>
  38. <screen><userinput remap="pre">mkdir -v build
  39. cd build</userinput></screen>
  40. <para>然后准备编译 Glibc:</para>
  41. <screen><userinput remap="configure">../configure \
  42. --prefix=/tools \
  43. --host=$LFS_TGT \
  44. --build=$(../scripts/config.guess) \
  45. --enable-kernel=&min-kernel; \
  46. --with-headers=/tools/include</userinput></screen>
  47. <!--
  48. libc_cv_forced_unwind=yes \
  49. libc_cv_c_cleanup=yes</userinput></screen> -->
  50. <variablelist>
  51. <title>配置选项的含义:</title>
  52. <varlistentry>
  53. <term><parameter>--host=$LFS_TGT, --build=$(../scripts/config.guess)</parameter></term>
  54. <listitem>
  55. <!--para>The combined effect of these switches is that Glibc's build system
  56. configures itself to cross-compile, using the cross-linker and
  57. cross-compiler in <filename class="directory">/tools</filename>.</para-->
  58. <para>在它们的共同作用下,Glibc 的构建系统将自身配置为使用
  59. <filename class="directory">/tools</filename>
  60. 中的交叉链接器和交叉编译器,进行交叉编译。</para>
  61. </listitem>
  62. </varlistentry>
  63. <varlistentry>
  64. <term><parameter>--enable-kernel=&min-kernel;</parameter></term>
  65. <listitem>
  66. <!--para>This tells Glibc to compile the library with support
  67. for &min-kernel; and later Linux kernels. Workarounds for older
  68. kernels are not enabled.</para-->
  69. <para>该选项告诉 Glibc 编译出支持 &min-kernel; 版或者更新的
  70. Linux 内核,这样就不会使用那些为更老内核准备的替代方案。
  71. </para>
  72. </listitem>
  73. </varlistentry>
  74. <varlistentry>
  75. <term><parameter>--with-headers=/tools/include</parameter></term>
  76. <listitem>
  77. <!--para>This tells Glibc to compile itself against the headers recently
  78. installed to the tools directory, so that it knows exactly what
  79. features the kernel has and can optimize itself accordingly.</para-->
  80. <para>该选项告诉 Glibc 在刚刚安装到 tools
  81. 目录中的头文件基础上进行编译,这样它就知道内核拥有哪些特性,
  82. 并据此对自身进行优化。</para>
  83. </listitem>
  84. </varlistentry>
  85. <!--
  86. <varlistentry>
  87. <term><parameter>libc_cv_forced_unwind=yes</parameter></term>
  88. <listitem>
  89. <!-para>The linker installed during
  90. <xref linkend="ch-tools-binutils-pass1"/> was cross-compiled and as
  91. such cannot be used until Glibc has been installed. This means that
  92. the configure test for force-unwind support will fail, as it relies on
  93. a working linker. The libc_cv_forced_unwind=yes variable is passed in
  94. order to inform <command>configure</command> that force-unwind
  95. support is available without it having to run the test.</para->
  96. <para>在 <xref linkend="ch-tools-binutils-pass1"/>
  97. 中安装的链接器是交叉链接器,在 Glibc 安装前不能正常使用。
  98. 这导致对于强制栈展开特性的配置检查失败,
  99. 因为该检查需要正常工作的链接器。
  100. libc_cv_forced_unwind=yes 变量被传递给
  101. <command>configure</command> 脚本,
  102. 从而表明强制栈展开支持是可用的,不需要进行测试。</para>
  103. </listitem>
  104. </varlistentry>
  105. <varlistentry>
  106. <term><parameter>libc_cv_c_cleanup=yes</parameter></term>
  107. <listitem>
  108. <!-para>Similarly, we pass libc_cv_c_cleanup=yes through to the
  109. <command>configure</command> script so that the test is skipped and C
  110. cleanup handling support is configured.</para->
  111. <para>类似的,我们传递 libc_cv_c_cleanup=yes 给
  112. <command>configure</command> 脚本,从而跳过相关测试,
  113. 并表明 C 清理支持可用。</para>
  114. </listitem>
  115. </varlistentry>
  116. -->
  117. <!-- <varlistentry>
  118. <term><parameter>libc_cv_ctors_header=yes</parameter></term>
  119. <listitem>
  120. <para>Similarly, we pass libc_cv_ctors_header=yes through to the
  121. <command>configure</command> script so that the test is skipped and
  122. gcc constructor support is configured.</para>
  123. </listitem>
  124. </varlistentry>-->
  125. </variablelist>
  126. <para>在当前阶段,可能出现下列警告:</para>
  127. <blockquote>
  128. <screen><computeroutput>configure: WARNING:
  129. *** These auxiliary programs are missing or
  130. *** incompatible versions: msgfmt
  131. *** some features will be disabled.
  132. *** Check the INSTALL file for required versions.</computeroutput></screen>
  133. </blockquote>
  134. <!--para>The missing or incompatible <command>msgfmt</command> program is
  135. generally harmless. This <command>msgfmt</command> program is part of the
  136. Gettext package which the host distribution should provide.</para-->
  137. <para><command>msgfmt</command>程序的缺失或不兼容一般是无害的。
  138. <command>msgfmt</command>程序是 Gettext 软件包的一部分,
  139. 宿主发行版应该提供它。</para>
  140. <note><!--para>There have been reports that this package may fail when
  141. building as a "parallel make". If this occurs, rerun the make command
  142. with a "-j1" option.</para-->
  143. <para>有报告称该软件包在并行构建时可能失败,如果发生了这种情况,
  144. 加上 "-j1" 选项重新执行 make 命令。</para>
  145. </note>
  146. <para>编译该软件包:</para>
  147. <screen><userinput remap="make">make</userinput></screen>
  148. <para>安装该软件包:</para>
  149. <screen><userinput remap="install">make install</userinput></screen>
  150. <caution>
  151. <!--para>At this point, it is imperative to stop and ensure that the basic
  152. functions (compiling and linking) of the new toolchain are working as
  153. expected. To perform a sanity check, run the following commands:</para-->
  154. <para>现在我们不可避免地要停下确认新工具链的各基本功能(编译和链接)
  155. 能如我们所预期的那样工作。执行以下命令进行完整性检查:</para>
  156. <screen><userinput>echo 'int main(){}' &gt; dummy.c
  157. $LFS_TGT-gcc dummy.c
  158. readelf -l a.out | grep ': /tools'</userinput></screen>
  159. <!--para>If everything is working correctly, there should be no errors,
  160. and the output of the last command will be of the form:</para-->
  161. <para>如果所有东西正常工作,那么应该没有错误,
  162. 而且最后一行命令应该输出下列格式的内容:</para>
  163. <screen><computeroutput>[Requesting program interpreter: /tools/lib64/ld-linux-x86-64.so.2]</computeroutput></screen>
  164. <!--para>Note that for 32-bit machines, the interpreter name will be
  165. <filename>/tools/lib/ld-linux.so.2</filename>.</para-->
  166. <para>注意,对于 32 位机器,解释器的名字将会是
  167. <filename>/tools/lib/ld-linux.so.2</filename>。</para>
  168. <!--para>If the output is not shown as above or there was no output at all,
  169. then something is wrong. Investigate and retrace the steps to find out
  170. where the problem is and correct it. This issue must be resolved before
  171. continuing on.</para-->
  172. <para>如果输出不像上面描述的那样,或者根本没有输出,就说明出了问题。
  173. 检查并重新跟踪各个步骤,找到出问题的地方并修正它。
  174. 在继续构建之前,必须解决这个问题。</para>
  175. <!--para>Once all is well, clean up the test files:</para-->
  176. <para>检验步骤顺利完成后,清理测试文件:</para>
  177. <screen><userinput>rm -v dummy.c a.out</userinput></screen>
  178. </caution>
  179. <note><!--para>Building Binutils in the section after next will serve as an
  180. additional check that the toolchain has been built properly. If Binutils
  181. fails to build, it is an indication that something has gone wrong with the
  182. previous Binutils, GCC, or Glibc installations.</para-->
  183. <para>在 <xref linkend="ch-tools-binutils-pass2"/> 中,构建 Binutils
  184. 能够对工具链是否正常构建进行额外检查。如果 Binutils 不能构建,
  185. 说明在之前安装 Binutils 、GCC 或者 Glibc 时出了问题。
  186. </para>
  187. </note>
  188. </sect2>
  189. <sect2 role="content">
  190. <title/>
  191. <para>该软件包的详细信息可以在
  192. <xref linkend="contents-glibc"/> 中找到。</para>
  193. </sect2>
  194. </sect1>