toolchaintechnotes.po 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: PACKAGE VERSION\n"
  4. "POT-Creation-Date: 2020-08-19 23:33+0800\n"
  5. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  6. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  7. "Language-Team: LANGUAGE <LL@li.org>\n"
  8. "Language: zh_CN\n"
  9. "MIME-Version: 1.0\n"
  10. "Content-Type: text/plain; charset=UTF-8\n"
  11. "Content-Transfer-Encoding: 8bit\n"
  12. "X-Generator: Translate Toolkit 2.2.5\n"
  13. #. type: Content of: <sect1><title>
  14. msgid "Toolchain Technical Notes"
  15. msgstr "工具链技术说明"
  16. #. type: Content of: <sect1><para>
  17. msgid ""
  18. "This section explains some of the rationale and technical details behind the "
  19. "overall build method. It is not essential to immediately understand "
  20. "everything in this section. Most of this information will be clearer after "
  21. "performing an actual build. This section can be referred to at any time "
  22. "during the process."
  23. msgstr ""
  24. "本节综合地解释构建方法中的逻辑和技术细节。您现在并不需要立刻理解本节的所有内"
  25. "容,在实际进行构建的过程中,可以更清晰地理解本节的信息。在整个构建过程中,您"
  26. "随时可以回来翻阅本节。"
  27. #. type: Content of: <sect1><para>
  28. msgid ""
  29. "The overall goal of <xref linkend=\"chapter-cross-tools\"/> and <xref "
  30. "linkend=\"chapter-temporary-tools\"/> is to produce a temporary area that "
  31. "contains a known-good set of tools that can be isolated from the host "
  32. "system. By using <command>chroot</command>, the commands in the remaining "
  33. "chapters will be contained within that environment, ensuring a clean, "
  34. "trouble-free build of the target LFS system. The build process has been "
  35. "designed to minimize the risks for new readers and to provide the most "
  36. "educational value at the same time."
  37. msgstr ""
  38. "<xref linkend=\"chapter-cross-tools\"/>和<xref linkend=\"chapter-temporary-"
  39. "tools\"/>的总目标是构造一个临时环境,它包含一组可靠的,能够与宿主系统完全分离"
  40. "的工具。这样,通过使用 <command>chroot</command> 命令,其余各章中执行的命令就"
  41. "被限制在这个临时环境中。这确保我们能够干净、顺利地构建 LFS 系统。整个构建过程"
  42. "被精心设计,以尽量降低新读者可能面临的风险,同时提供尽可能多的教育价值。"
  43. #. type: Content of: <sect1><para>
  44. msgid ""
  45. "The build process is based on the process of <emphasis>cross-compilation</"
  46. "emphasis>. Cross-compilation is normally used for building a compiler and "
  47. "its toolchain for a machine different from the one that is used for the "
  48. "build. This is not strictly needed for LFS, since the machine where the new "
  49. "system will run is the same as the one used for the build. But cross-"
  50. "compilation has the great advantage that anything that is cross-compiled "
  51. "cannot depend on the host environment."
  52. msgstr ""
  53. "构建过程是基于<emphasis>交叉编译</emphasis>过程的。交叉编译通常被用于为一台与"
  54. "本机完全不同的计算机构建编译器及其工具链。这对于 LFS 并不严格必要,因为新系统"
  55. "运行的机器就是构建它时使用的。但是,交叉编译拥有一项重要优势,即任何交叉编译"
  56. "产生的程序都不可能依赖于宿主环境。"
  57. #. type: Content of: <sect1><sect2><title>
  58. msgid "About Cross-Compilation"
  59. msgstr "关于交叉编译"
  60. #. type: Content of: <sect1><sect2><para>
  61. msgid ""
  62. "Cross-compilation involves some concepts that deserve a section on their "
  63. "own. Although this section may be omitted in a first reading, it is strongly "
  64. "suggested to come back to it later in order to get a full grasp of the build "
  65. "process."
  66. msgstr ""
  67. "交叉编译涉及一些概念,值得专门用一节讨论。尽管您可以在初次阅读时跳过本节,但"
  68. "强烈建议您之后回头阅读本节,以完全掌握构建过程。"
  69. #. type: Content of: <sect1><sect2><para>
  70. msgid "Let us first define some terms used in this context:"
  71. msgstr "首先我们定义讨论交叉编译时常用的术语:"
  72. #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
  73. msgid "build"
  74. msgstr "build"
  75. #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
  76. msgid ""
  77. "is the machine where we build programs. Note that this machine is referred "
  78. "to as the <quote>host</quote> in other sections."
  79. msgstr ""
  80. "指构建程序时使用的机器。注意在某些其他章节,这台机器被称为<quote>host</"
  81. "quote>(宿主)。"
  82. #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
  83. msgid "host"
  84. msgstr "host"
  85. #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
  86. msgid ""
  87. "is the machine/system where the built programs will run. Note that this use "
  88. "of <quote>host</quote> is not the same as in other sections."
  89. msgstr ""
  90. "指将来会运行被构建的程序的机器。注意这里说的<quote>host</quote>与其他章节使用"
  91. "的“宿主”(host) 一词不同。"
  92. #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
  93. msgid "target"
  94. msgstr "target"
  95. #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
  96. msgid ""
  97. "is only used for compilers. It is the machine the compiler produces code "
  98. "for. It may be different from both build and host."
  99. msgstr ""
  100. "只有编译器使用这个术语。编译器为这台机器产生代码。它可能和 build 与 host 都不"
  101. "同。"
  102. #. type: Content of: <sect1><sect2><para>
  103. msgid ""
  104. "As an example, let us imagine the following scenario (sometimes referred to "
  105. "as <quote>Canadian Cross</quote>): we may have a compiler on a slow machine "
  106. "only, let's call the machine A, and the compiler ccA. We may have also a "
  107. "fast machine (B), but with no compiler, and we may want to produce code for "
  108. "another slow machine (C). To build a compiler for machine C, we would have "
  109. "three stages:"
  110. msgstr ""
  111. "例如,我们考虑下列场景 (有时称为<quote>Canadian Cross</quote>):我们仅在一台"
  112. "运行缓慢的机器上有编译器,称这台机器为 A,这个编译器为 ccA。我们还有一台运行"
  113. "较快的机器 (B),但它没有安装编译器,而我们希望为另一台缓慢的机器 (C) 生成代"
  114. "码。如果要为 C 构建编译器,可以通过三个阶段完成:"
  115. #. type: Content of: <sect1><sect2><informaltable><tgroup><thead><row><entry>
  116. msgid "Stage"
  117. msgstr "阶段"
  118. #. type: Content of: <sect1><sect2><informaltable><tgroup><thead><row><entry>
  119. msgid "Build"
  120. msgstr "Build"
  121. #. type: Content of: <sect1><sect2><informaltable><tgroup><thead><row><entry>
  122. msgid "Host"
  123. msgstr "Host"
  124. #. type: Content of: <sect1><sect2><informaltable><tgroup><thead><row><entry>
  125. msgid "Target"
  126. msgstr "Target"
  127. #. type: Content of: <sect1><sect2><informaltable><tgroup><thead><row><entry>
  128. msgid "Action"
  129. msgstr "操作描述"
  130. #. type: Content of: <sect1><sect2><informaltable><tgroup><tbody><row><entry>
  131. msgid "1"
  132. msgstr "1"
  133. #. type: Content of: <sect1><sect2><informaltable><tgroup><tbody><row><entry>
  134. msgid "A"
  135. msgstr "A"
  136. #. type: Content of: <sect1><sect2><informaltable><tgroup><tbody><row><entry>
  137. msgid "B"
  138. msgstr "B"
  139. #. type: Content of: <sect1><sect2><informaltable><tgroup><tbody><row><entry>
  140. msgid "build cross-compiler cc1 using ccA on machine A"
  141. msgstr "在机器 A 上,使用 ccA 构建交叉编译器 cc1"
  142. #. type: Content of: <sect1><sect2><informaltable><tgroup><tbody><row><entry>
  143. msgid "2"
  144. msgstr "2"
  145. #. type: Content of: <sect1><sect2><informaltable><tgroup><tbody><row><entry>
  146. msgid "C"
  147. msgstr "C"
  148. #. type: Content of: <sect1><sect2><informaltable><tgroup><tbody><row><entry>
  149. msgid "build cross-compiler cc2 using cc1 on machine A"
  150. msgstr "在机器 A 上,使用 cc1 构建交叉编译器 cc2"
  151. #. type: Content of: <sect1><sect2><informaltable><tgroup><tbody><row><entry>
  152. msgid "3"
  153. msgstr "3"
  154. #. type: Content of: <sect1><sect2><informaltable><tgroup><tbody><row><entry>
  155. msgid "build compiler ccC using cc2 on machine B"
  156. msgstr "在机器 B 上,使用 cc2 构建交叉编译器 ccC"
  157. #. type: Content of: <sect1><sect2><para>
  158. msgid ""
  159. "Then, all the other programs needed by machine C can be compiled using cc2 "
  160. "on the fast machine B. Note that unless B can run programs produced for C, "
  161. "there is no way to test the built programs until machine C itself is "
  162. "running. For example, for testing ccC, we may want to add a fourth stage:"
  163. msgstr ""
  164. "这样,我们可以为机器 C 使用 cc2 在快速的机器 B 上构建所有其他程序。注意除非 "
  165. "B 能运行为 C 编译的程序,我们无法测试编译得到的程序,直到在 C 上运行它。例"
  166. "如,如果要测试 ccC,我们可以增加第四个阶段:"
  167. #. type: Content of: <sect1><sect2><informaltable><tgroup><tbody><row><entry>
  168. msgid "4"
  169. msgstr "4"
  170. #. type: Content of: <sect1><sect2><informaltable><tgroup><tbody><row><entry>
  171. msgid "rebuild and test ccC using itself on machine C"
  172. msgstr "在机器 C 上,用 ccC 重新构建它本身,并测试"
  173. #. type: Content of: <sect1><sect2><para>
  174. msgid ""
  175. "In the example above, only cc1 and cc2 are cross-compilers, that is, they "
  176. "produce code for a machine different from the one they are run on. The "
  177. "other compilers ccA and ccC produce code for the machine they are run on. "
  178. "Such compilers are called <emphasis>native</emphasis> compilers."
  179. msgstr ""
  180. "在上面的例子中,只有 cc1 和 cc2 是交叉编译器,它们为与它们本身运行的机器不同"
  181. "的机器产生代码。而另外的编译器 ccA 和 ccC 为它们本身运行的机器产生代码,它们"
  182. "称为<emphasis>本地</emphasis>编译器。"
  183. #. type: Content of: <sect1><sect2><title>
  184. msgid "Implementation of Cross-Compilation for LFS"
  185. msgstr "LFS 的交叉编译实现"
  186. #. type: Content of: <sect1><sect2><note><para>
  187. msgid ""
  188. "Almost all the build systems use names of the form cpu-vendor-kernel-os "
  189. "referred to as the machine triplet. An astute reader may wonder why a "
  190. "<quote>triplet</quote> refers to a four component name. The reason is "
  191. "history: initially, three component names were enough to designate "
  192. "unambiguously a machine, but with new machines and systems appearing, that "
  193. "proved insufficient. The word <quote>triplet</quote> remained. A simple way "
  194. "to determine your machine triplet is to run the <command>config.guess</"
  195. "command> script that comes with the source for many packages. Unpack the "
  196. "binutils sources and run the script: <userinput>./config.guess</userinput> "
  197. "and note the output. For example, for a 32-bit Intel processor the output "
  198. "will be <emphasis>i686-pc-linux-gnu</emphasis>. On a 64-bit system it will "
  199. "be <emphasis>x86_64-pc-linux-gnu</emphasis>."
  200. msgstr ""
  201. "几乎所有构建系统都使用形如 CPU-供应商-内核-操作系统,称为三元组的名称表示目标"
  202. "机器。好奇的读者可能感到奇怪,为什么一个<quote>三元组</quote>却包含四个部分。"
  203. "这是历史遗留的:最早,三个部分就足以无歧义地描述一台机器。但是随着新的机器和"
  204. "系统不断出现,最终证明三个部分是不够的。然而,<quote>三元组</quote>这个术语保"
  205. "留了下来。有一种简单方法可以获得您的机器的三元组,即运行许多软件包附带的 "
  206. "<command>config.guess</command> 脚本。解压缩 Binutils 源码,然后运行脚本:"
  207. "<userinput>./config.guess</userinput>,观察输出。例如,对于 32 位 Intel 处理"
  208. "器,输出应该是 <emphasis>i686-pc-linux-gnu</emphasis>,而对于 64 位系统输出应"
  209. "该是 <emphasis>x86_64-pc-linux-gnu</emphasis>。"
  210. #. type: Content of: <sect1><sect2><note><para>
  211. msgid ""
  212. "Also be aware of the name of the platform's dynamic linker, often referred "
  213. "to as the dynamic loader (not to be confused with the standard linker "
  214. "<command>ld</command> that is part of binutils). The dynamic linker provided "
  215. "by Glibc finds and loads the shared libraries needed by a program, prepares "
  216. "the program to run, and then runs it. The name of the dynamic linker for a "
  217. "32-bit Intel machine will be <filename class=\"libraryfile\">ld-linux.so.2</"
  218. "filename> (<filename class=\"libraryfile\">ld-linux-x86-64.so.2</filename> "
  219. "for 64-bit systems). A sure-fire way to determine the name of the dynamic "
  220. "linker is to inspect a random binary from the host system by running: "
  221. "<userinput>readelf -l &lt;name of binary&gt; | grep interpreter</userinput> "
  222. "and noting the output. The authoritative reference covering all platforms is "
  223. "in the <filename>shlib-versions</filename> file in the root of the Glibc "
  224. "source tree."
  225. msgstr ""
  226. "另外注意平台的动态链接器的名称,它又被称为动态加载器 (不要和 Binutils 中的普"
  227. "通链接器 <command>ld</command> 混淆)。动态链接器由 Glibc 提供,它寻找并加载程"
  228. "序所需的共享库,为程序运行做好准备,然后运行程序。在 32 位 Intel 机器上动态链"
  229. "接器的名称是 <filename class=\"libraryfile\">ld-linux.so.2</filename> (在 64 "
  230. "位系统上是 <filename class=\"libraryfile\">ld-linux-x86-64.so.2</filename>)。"
  231. "一个确定动态链接器名称的准确方法是从宿主系统找一个二进制可执行文件,然后执"
  232. "行:<userinput>readelf -l &lt;二进制文件名&gt; | grep interpreter</"
  233. "userinput> 并观察输出。包含所有平台的权威参考可以在 Glibc 源码树根目录的 "
  234. "<filename>shlib-versions</filename> 文件中找到。"
  235. #. type: Content of: <sect1><sect2><para>
  236. msgid ""
  237. "In order to fake a cross compilation, the name of the host triplet is "
  238. "slightly adjusted by changing the &quot;vendor&quot; field in the "
  239. "<envar>LFS_TGT</envar> variable. We also use the <parameter>--with-sysroot</"
  240. "parameter> option when building the cross linker and cross compiler to tell "
  241. "them where to find the needed host files. This ensures that none of the "
  242. "other programs built in <xref linkend=\"chapter-temporary-tools\"/> can link "
  243. "to libraries on the build machine. Only two stages are mandatory, and one "
  244. "more for tests:"
  245. msgstr ""
  246. "为了将本机伪装成交叉编译目标机器,我们在 <envar>LFS_TGT</envar> 变量中,对宿"
  247. "主系统三元组的 &quot;vendor&quot; 域进行修改。我们还会在构建交叉链接器和交叉"
  248. "编译器时使用 <parameter>--with-sysroot</parameter> 选项,指定查找所需的 host "
  249. "系统文件的位置。这保证在<xref linkend=\"chapter-temporary-tools\"/>中的其他程"
  250. "序在构建时不会链接到宿主 (build) 系统的库。前两个阶段是必要的,第三个阶段可以"
  251. "用于测试:"
  252. #. type: Content of: <sect1><sect2><informaltable><tgroup><tbody><row><entry>
  253. msgid "pc"
  254. msgstr "pc"
  255. #. type: Content of: <sect1><sect2><informaltable><tgroup><tbody><row><entry>
  256. msgid "lfs"
  257. msgstr "lfs"
  258. #. type: Content of: <sect1><sect2><informaltable><tgroup><tbody><row><entry>
  259. msgid "build cross-compiler cc1 using cc-pc on pc"
  260. msgstr "在 pc 上使用 cc-pc 构建交叉编译器 cc1"
  261. #. type: Content of: <sect1><sect2><informaltable><tgroup><tbody><row><entry>
  262. msgid "build compiler cc-lfs using cc1 on pc"
  263. msgstr "在 pc 上使用 cc1 构建 cc-lfs"
  264. #. type: Content of: <sect1><sect2><informaltable><tgroup><tbody><row><entry>
  265. msgid "rebuild and test cc-lfs using itself on lfs"
  266. msgstr "在 lfs 上使用 cc-lfs 重新构建并测试它本身"
  267. #. type: Content of: <sect1><sect2><para>
  268. msgid ""
  269. "In the above table, <quote>on pc</quote> means the commands are run on a "
  270. "machine using the already installed distribution. <quote>On lfs</quote> "
  271. "means the commands are run in a chrooted environment."
  272. msgstr ""
  273. "在上表中,<quote>在 pc 上</quote> 意味着命令在已经安装好的发行版中执行。"
  274. "<quote>在 lfs 上</quote> 意味着命令在 chroot 环境中执行。"
  275. #. type: Content of: <sect1><sect2><para>
  276. msgid ""
  277. "Now, there is more about cross-compiling: the C language is not just a "
  278. "compiler, but also defines a standard library. In this book, the GNU C "
  279. "library, named glibc, is used. This library must be compiled for the lfs "
  280. "machine, that is, using the cross compiler cc1. But the compiler itself "
  281. "uses an internal library implementing complex instructions not available in "
  282. "the assembler instruction set. This internal library is named libgcc, and "
  283. "must be linked to the glibc library to be fully functional! Furthermore, the "
  284. "standard library for C++ (libstdc++) also needs being linked to glibc. The "
  285. "solution to this chicken and egg problem is to first build a degraded cc1 "
  286. "based libgcc, lacking some functionalities such as threads and exception "
  287. "handling, then build glibc using this degraded compiler (glibc itself is not "
  288. "degraded), then build libstdc++. But this last library will lack the same "
  289. "functionalities as libgcc."
  290. msgstr ""
  291. "现在,关于交叉编译,还有更多要处理的问题:C 语言并不仅仅由一个编译器实现,它"
  292. "还规定了一个标准库。在本书中,我们使用 GNU C 运行库,即 glibc。它必须为 lfs "
  293. "目标机器使用交叉编译器 cc1 编译。但是,编译器本身使用一个库,实现汇编指令集并"
  294. "不支持的一些复杂指令。这个内部库称为 libgcc,它必须链接到 glibc 库才能实现完"
  295. "整功能!另外,C++ 标准库 (libstdc++) 也必须链接到 glibc。为了解决这个”先有鸡"
  296. "还是先有蛋“的问题,只能先构建一个降级的 cc1,它的 libgcc 缺失线程和异常等功"
  297. "能,再用这个降级的编译器构建 glibc (这不会导致 glibc 缺失功能),再构建 "
  298. "libstdc++。但是这种方法构建的 libstdc++ 和 libgcc 一样,会缺失一些功能。"
  299. #. type: Content of: <sect1><sect2><para>
  300. msgid ""
  301. "This is not the end of the story: the conclusion of the preceding paragraph "
  302. "is that cc1 is unable to build a fully functional libstdc++, but this is the "
  303. "only compiler available for building the C/C++ libraries during stage 2! Of "
  304. "course, the compiler built during stage 2, cc-lfs, would be able to build "
  305. "those libraries, but (1) the build system of GCC does not know that it is "
  306. "usable on pc, and (2) using it on pc would be at risk of linking to the pc "
  307. "libraries, since cc-lfs is a native compiler. So we have to build libstdc++ "
  308. "later, in chroot."
  309. msgstr ""
  310. "讨论还没有结束:上面一段的结论是 cc1 无法构建功能完整的 libstdc++,但这是我们"
  311. "在阶段 2 构建 C/C++ 库时唯一可用的编译器!当然,在阶段 2 中构建的编译器 cc-"
  312. "lfs 将会可以构建这些库,但是 (1) GCC 构建系统不知道这个编译器在 pc 上可以使"
  313. "用,而且 (2) 它是一个本地编译器,因此在 pc 上使用它可能产生链接到 pc (宿主系"
  314. "统) 库的风险。因此我们必须在进入 chroot 后再次构建 libstdc++。"
  315. #. type: Content of: <sect1><sect2><title>
  316. msgid "Other procedural details"
  317. msgstr "构建过程的其他细节"
  318. #. type: Content of: <sect1><sect2><para>
  319. msgid ""
  320. "The cross-compiler will be installed in a separate <filename class="
  321. "\"directory\">$LFS/tools</filename> directory, since it will not be part of "
  322. "the final system."
  323. msgstr ""
  324. "交叉编译器会被安装在独立的 <filename class=\"directory\">$LFS/tools</"
  325. "filename> 目录,因为它不属于最终构建的系统。"
  326. #. type: Content of: <sect1><sect2><para>
  327. msgid ""
  328. "Binutils is installed first because the <command>configure</command> runs of "
  329. "both GCC and Glibc perform various feature tests on the assembler and linker "
  330. "to determine which software features to enable or disable. This is more "
  331. "important than one might first realize. An incorrectly configured GCC or "
  332. "Glibc can result in a subtly broken toolchain, where the impact of such "
  333. "breakage might not show up until near the end of the build of an entire "
  334. "distribution. A test suite failure will usually highlight this error before "
  335. "too much additional work is performed."
  336. msgstr ""
  337. "我们首先安装 Binutils。这是由于 GCC 和 Glibc 的 <command>configure</command> "
  338. "脚本首先测试汇编器和链接器的一些特性,以决定启用或禁用一些软件特性。初看起来"
  339. "这并不重要,但没有正确配置的 GCC 或者 Glibc 可以导致工具链中潜伏的故障。这些"
  340. "故障可能到整个构建过程快要结束时才突然爆发,不过在花费大量无用功之前,测试套"
  341. "件的失败可以将这类错误凸显出来。"
  342. #. type: Content of: <sect1><sect2><para>
  343. msgid ""
  344. "Binutils installs its assembler and linker in two locations, <filename class="
  345. "\"directory\">$LFS/tools/bin</filename> and <filename class=\"directory\">"
  346. "$LFS/tools/$LFS_TGT/bin</filename>. The tools in one location are hard "
  347. "linked to the other. An important facet of the linker is its library search "
  348. "order. Detailed information can be obtained from <command>ld</command> by "
  349. "passing it the <parameter>--verbose</parameter> flag. For example, <command>"
  350. "$LFS_TGT-ld --verbose | grep SEARCH</command> will illustrate the current "
  351. "search paths and their order. It shows which files are linked by "
  352. "<command>ld</command> by compiling a dummy program and passing the "
  353. "<parameter>--verbose</parameter> switch to the linker. For example, <command>"
  354. "$LFS_TGT-gcc dummy.c -Wl,--verbose 2&gt;&amp;1 | grep succeeded</command> "
  355. "will show all the files successfully opened during the linking."
  356. msgstr ""
  357. "Binutils 将汇编器和链接器安装在两个位置,一个是 <filename class=\"directory"
  358. "\">$LFS/tools/bin</filename>,另一个是 <filename class=\"directory\">$LFS/"
  359. "tools/$LFS_TGT/bin</filename>。这两个位置中的工具互为硬链接。链接器的一项重要"
  360. "属性是它搜索库的顺序,通过向 <command>ld</command> 命令加入 <parameter>--"
  361. "verbose</parameter> 参数,可以得到关于搜索路径的详细信息。例如,"
  362. "<userinput>ld --verbose | grep SEARCH</userinput> 会输出当前的搜索路径及其顺"
  363. "序。此外,通过编译一个样品 (dummy) 程序并向链接器 <command>ld</command> 传递 "
  364. "<parameter>--verbose</parameter> 参数,可以知道哪些文件被链接。例如,"
  365. "<userinput>gcc dummy.c -Wl,--verbose 2&gt;&amp;1 | grep succeeded</"
  366. "userinput> 将显示所有在链接过程中被成功打开的文件。"
  367. #. type: Content of: <sect1><sect2><para>
  368. msgid ""
  369. "The next package installed is GCC. An example of what can be seen during its "
  370. "run of <command>configure</command> is:"
  371. msgstr ""
  372. "下一步安装 GCC。在执行它的 <command>configure</command> 脚本时,您会看到类似"
  373. "下面这样的输出:"
  374. #. type: Content of: <sect1><sect2><screen>
  375. #, no-wrap
  376. msgid ""
  377. "<computeroutput>checking what assembler to use... /mnt/lfs/tools/i686-lfs-linux-gnu/bin/as\n"
  378. "checking what linker to use... /mnt/lfs/tools/i686-lfs-linux-gnu/bin/ld</computeroutput>"
  379. msgstr ""
  380. "<computeroutput>checking what assembler to use... /tools/i686-lfs-linux-gnu/bin/as\n"
  381. "checking what linker to use... /mnt/lfs/tools/i686-lfs-linux-gnu/bin/ld</computeroutput>"
  382. #. type: Content of: <sect1><sect2><para>
  383. msgid ""
  384. "This is important for the reasons mentioned above. It also demonstrates that "
  385. "GCC's configure script does not search the PATH directories to find which "
  386. "tools to use. However, during the actual operation of <command>gcc</command> "
  387. "itself, the same search paths are not necessarily used. To find out which "
  388. "standard linker <command>gcc</command> will use, run: <command>$LFS_TGT-gcc -"
  389. "print-prog-name=ld</command>."
  390. msgstr ""
  391. "基于我们上面论述的原因,这些输出非常重要。这说明 GCC 的配置脚本没有在 PATH 变"
  392. "量指定的目录中搜索工具。然而,在 <command>gcc</command> 的实际运行中,未必会"
  393. "使用同样的搜索路径。为了查询 <command>gcc</command> 会使用哪个链接器,需要执"
  394. "行以下命令:<userinput>$LFS_TGT-gcc -print-prog-name=ld</userinput>。"
  395. #. type: Content of: <sect1><sect2><para>
  396. msgid ""
  397. "Detailed information can be obtained from <command>gcc</command> by passing "
  398. "it the <parameter>-v</parameter> command line option while compiling a dummy "
  399. "program. For example, <command>gcc -v dummy.c</command> will show detailed "
  400. "information about the preprocessor, compilation, and assembly stages, "
  401. "including <command>gcc</command>'s included search paths and their order."
  402. msgstr ""
  403. "通过向 <command>gcc</command> 传递 <parameter>-v</parameter> 参数,可以知道在"
  404. "编译样品程序时发生的细节。例如,<userinput>gcc -v dummy.c</userinput> 会输出"
  405. "预处理、编译和汇编阶段中的详细信息,包括 <command>gcc</command> 的包含文件搜"
  406. "索路径和顺序。"
  407. #. type: Content of: <sect1><sect2><para>
  408. msgid ""
  409. "Next installed are sanitized Linux API headers. These allow the standard C "
  410. "library (Glibc) to interface with features that the Linux kernel will "
  411. "provide."
  412. msgstr ""
  413. "下一步安装“净化的” (sanitized) Linux API 头文件。这允许 C 标准库 (Glibc) 与 "
  414. "Linux 内核提供的各种特性交互。"
  415. #. type: Content of: <sect1><sect2><para>
  416. msgid ""
  417. "The next package installed is Glibc. The most important considerations for "
  418. "building Glibc are the compiler, binary tools, and kernel headers. The "
  419. "compiler is generally not an issue since Glibc will always use the compiler "
  420. "relating to the <parameter>--host</parameter> parameter passed to its "
  421. "configure script; e.g. in our case, the compiler will be <command>$LFS_TGT-"
  422. "gcc</command>. The binary tools and kernel headers can be a bit more "
  423. "complicated. Therefore, take no risks and use the available configure "
  424. "switches to enforce the correct selections. After the run of "
  425. "<command>configure</command>, check the contents of the <filename>config."
  426. "make</filename> file in the <filename class=\"directory\">build</filename> "
  427. "directory for all important details. Note the use of <parameter>CC="
  428. "\"$LFS_TGT-gcc\"</parameter> (with <envar>$LFS_TGT</envar> expanded) to "
  429. "control which binary tools are used and the use of the <parameter>-nostdinc</"
  430. "parameter> and <parameter>-isystem</parameter> flags to control the "
  431. "compiler's include search path. These items highlight an important aspect of "
  432. "the Glibc package&mdash;it is very self-sufficient in terms of its build "
  433. "machinery and generally does not rely on toolchain defaults."
  434. msgstr ""
  435. "下一步安装 Glibc。在构建 Glibc 时需要着重考虑是编译器,二进制工具,以及内核头"
  436. "文件。编译器一般不成问题,Glibc 总是使用传递给配置脚本的 <parameter>--host</"
  437. "parameter> 参数相关的编译器。例如,在我们的例子中,使用的编译器是 <command>"
  438. "$LFS_TGT-gcc</command>。但二进制工具和内核头文件的问题比较复杂。安全起见,我"
  439. "们使用配置脚本提供的开关,保证正确的选择。在 <command>configure</command> 脚"
  440. "本运行完成后,可以检查 <filename>build</filename> 目录中的 <filename>config."
  441. "make</filename> 文件,了解全部重要的细节。注意参数 <parameter>CC=\"$LFS_TGT-"
  442. "gcc\"</parameter> (其中 <envar>$LFS_TGT</envar> 会被展开) 控制构建系统使用正"
  443. "确的二进制工具,而参数 <parameter>-nostdinc</parameter> 和 <parameter>-"
  444. "isystem</parameter> 控制编译器的包含文件搜索路径。这些事项凸显了 Glibc 软件包"
  445. "的一个重要性质 —— 它的构建机制是相当自给自足的,通常不依赖于工具链默认值。"
  446. #. type: Content of: <sect1><sect2><para>
  447. msgid ""
  448. "As said above, the standard C++ library is compiled next, followed in <xref "
  449. "linkend=\"chapter-temporary-tools\"/> by all the programs that need "
  450. "themselves to be built. The install step of all those packages uses the "
  451. "<envar>DESTDIR</envar> variable to have the programs land into the LFS "
  452. "filesystem."
  453. msgstr ""
  454. "正如前文所述,接下来构建 C++ 标准库,然后是<xref linkend=\"chapter-temporary-"
  455. "tools\"/>中那些需要自身才能构建的程序后。在安装这些软件包时使用 "
  456. "<envar>DESTDIR</envar> 变量,将它安装到 LFS 文件系统中。"
  457. #. type: Content of: <sect1><sect2><para>
  458. msgid ""
  459. "At the end of <xref linkend=\"chapter-temporary-tools\"/> the native lfs "
  460. "compiler is installed. First binutils-pass2 is built, with the same "
  461. "<envar>DESTDIR</envar> install as the other programs, then the second pass "
  462. "of GCC is constructed, omitting libstdc++ and other non-important "
  463. "libraries. Due to some weird logic in GCC's configure script, "
  464. "<envar>CC_FOR_TARGET</envar> ends up as <command>cc</command> when the host "
  465. "is the same as the target, but is different from the build system. This is "
  466. "why <parameter>CC_FOR_TARGET=$LFS_TGT-gcc</parameter> is put explicitly into "
  467. "the configure options."
  468. msgstr ""
  469. "在<xref linkend=\"chapter-temporary-tools\"/>一节的末尾,构建 lfs 本地编译"
  470. "器。首先使用和其他程序相同的 <envar>DESTDIR</envar> 第二次构建 binutils,然后"
  471. "第二次构建 GCC,构建时忽略 libstdc++ 和其他不重要的库。由于 GCC 配置脚本的一"
  472. "些奇怪逻辑,<envar>CC_FOR_TARGET</envar> 变量在 host 系统和 target 相同,但"
  473. "与 build 不同时,被设定为 <command>cc</command>。因此我们必须显式地在配置选项"
  474. "中指定 <parameter>CC_FOR_TARGET=$LFS_TGT-gcc</parameter>。"
  475. #. type: Content of: <sect1><sect2><para>
  476. msgid ""
  477. "Upon entering the chroot environment in <xref linkend=\"chapter-chroot-"
  478. "temporary-tools\"/>, the first task is to install libstdc++. Then temporary "
  479. "installations of programs needed for the proper operation of the toolchain "
  480. "are performed. Programs needed for testing other programs are also built. "
  481. "From this point onwards, the core toolchain is self-contained and self-"
  482. "hosted. In <xref linkend=\"chapter-building-system\"/>, final versions of "
  483. "all the packages needed for a fully functional system are built, tested and "
  484. "installed."
  485. msgstr ""
  486. "在<xref linkend=\"chapter-chroot-temporary-tools\"/>中,进入 chroot 环境后,"
  487. "首先安装 libstdc++。之后临时性地安装工具链的正常工作所必须的程序。还要构建测"
  488. "试其他程序时必须的程序。此后,核心工具链成为自包含的本地工具链。在<xref "
  489. "linkend=\"chapter-building-system\"/>中,构建、测试并最后一次安装所有软件包,"
  490. "它们组成功能完整的系统。"