aboutsbus.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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="prepare-aboutsbus">
  8. <?dbhtml filename="aboutsbus.html"?>
  9. <title>关于 SBU</title>
  10. <!--para>Many people would like to know beforehand approximately how long
  11. it takes to compile and install each package. Because Linux From
  12. Scratch can be built on many different systems, it is impossible to
  13. provide accurate time estimates. The biggest package (Glibc) will
  14. take approximately 20 minutes on the fastest systems, but could take
  15. up to three days on slower systems! Instead of providing actual times,
  16. the Standard Build Unit (SBU) measure will be
  17. used instead.</para-->
  18. <para>许多人想在编译和安装各个软件包之前,了解这一过程大概需要多少时间。
  19. 由于 Linux From Scratch 可以在许多不同系统上构建,
  20. 我们无法直接给出估计时间。例如,最大的软件包 (Glibc)
  21. 在最快的系统上只要大约 20 分钟就能构建好,
  22. 而在一些较慢的系统上需要 3 天!因此,我们不提供实际时间,
  23. 而是以标准构建单位 (SBU) 衡量时间。</para>
  24. <!--para>The SBU measure works as follows. The first package to be compiled
  25. from this book is Binutils in <xref linkend="chapter-temporary-tools"/>. The
  26. time it takes to compile this package is what will be referred to as the
  27. Standard Build Unit or SBU. All other compile times will be expressed relative
  28. to this time.</para-->
  29. <para>标准构建单位的定义如下:本书中构建的第一个软件包是
  30. <xref linkend="chapter-temporary-tools"/> 中的 Binutils ,
  31. 定义编译它需要的时间为标准构建单位,缩写为 SBU 。
  32. 其他软件包的编译时间用 SBU 为单位表示。</para>
  33. <!--para>For example, consider a package whose compilation time is 4.5
  34. SBUs. This means that if a system took 10 minutes to compile and
  35. install the first pass of Binutils, it will take
  36. <emphasis>approximately</emphasis> 45 minutes to build this example package.
  37. Fortunately, most build times are shorter than the one for Binutils.</para>
  38. <para>In general, SBUs are not entirely accurate because they depend on many
  39. factors, including the host system's version of GCC. They are provided here
  40. to give an estimate of how long it might take to install a package, but the
  41. numbers can vary by as much as dozens of minutes in some cases.</para-->
  42. <para>例如,考虑一个编译时间是 4.5 SBU 的软件包。如果在某个系统上,
  43. 需要 10 分钟来编译和安装第一轮的 Binutils ,
  44. 那么<emphasis>大概</emphasis>需要 45 分钟才能编译这个软件包。
  45. 幸运的是,多数软件包构建时间比 Binutils 少。</para>
  46. <para>一般来说,SBU 不是完全准确的。这是由于它受到许多因素的影响,
  47. 包括宿主系统的 GCC 版本。
  48. SBU 只能用来估计安装一个软件包可能需要的时间,
  49. 估计结果的误差在个别情况下可能达到几十分钟。</para>
  50. <note>
  51. <!--para>For many modern systems with multiple processors (or cores) the
  52. compilation time for a package can be reduced by performing a "parallel
  53. make" by either setting an environment variable or telling the
  54. <command>make</command> program how many processors are available. For
  55. instance, a Core2Duo can support two simultaneous processes with:</para-->
  56. <para>对于许多拥有多个处理器(或处理器核心)的现代系统,
  57. 可以进行并行构建,从而显著缩短软件包的编译时间。
  58. 设置环境变量,或者直接告诉 <command>make</command>
  59. 命令有多少个可用的处理器,都可以进行并行编译。例如,
  60. 在一个 Core2Duo 系统中,可以设置下列环境变量,
  61. 以支持用两个并行的进程进行编译:</para>
  62. <screen role="nodump"><userinput>export MAKEFLAGS='-j 2'</userinput></screen>
  63. <!--para>or just building with:</para-->
  64. <para>或者直接用以下命令构建:</para>
  65. <screen role="nodump"><userinput>make -j2</userinput></screen>
  66. <!--para>When multiple processors are used in this way, the SBU units in the
  67. book will vary even more than they normally would. In some cases, the make
  68. step will simply fail. Analyzing the output of the build process will also
  69. be more difficult because the lines of different processes will be
  70. interleaved. If you run into a problem with a build step, revert back to a
  71. single processor build to properly analyze the error messages.</para-->
  72. <para>用这种方式使用多个处理器时,SBU 值将会发生变化,
  73. 有时甚至变得比正常值还大。某些情况下,还会导致
  74. <command>make</command> 命令失败。
  75. 另外,分析构建过程的的输出也会变得困难,
  76. 因为不同进程的输出行会交错在一起。如果在构建过程中出现问题,
  77. 需要使用单处理器进行构建,才能更好地分析错误消息。</para>
  78. </note>
  79. </sect1>