make.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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-make" role="wrap">
  8. <?dbhtml filename="make.html"?>
  9. <sect1info condition="script">
  10. <productname>make</productname>
  11. <productnumber>&make-version;</productnumber>
  12. <address>&make-url;</address>
  13. </sect1info>
  14. <title>Make-&make-version;</title>
  15. <indexterm zone="ch-tools-make">
  16. <primary sortas="a-Make">Make</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/make.xml"
  23. xpointer="xpointer(/sect1/sect2[1]/para[1])"/>
  24. <segmentedlist>
  25. <segtitle>&buildtime;</segtitle>
  26. <segtitle>&diskspace;</segtitle>
  27. <seglistitem>
  28. <seg>&make-ch5-sbu;</seg>
  29. <seg>&make-ch5-du;</seg>
  30. </seglistitem>
  31. </segmentedlist>
  32. </sect2>
  33. <sect2 role="installation">
  34. <title>安装 Make</title>
  35. <para>首先解决一个由 Glibc-2.27 及更新版本导致的错误:</para>
  36. <screen><userinput remap="pre">sed -i '211,217 d; 219,229 d; 232 d' glob/glob.c</userinput></screen>
  37. <para>准备编译 Make:</para>
  38. <screen><userinput remap="configure">./configure --prefix=/tools --without-guile</userinput></screen>
  39. <variablelist>
  40. <title>配置选项的含义:</title>
  41. <varlistentry>
  42. <term><parameter>--without-guile</parameter></term>
  43. <listitem>
  44. <!--para>This ensures that Make-&make-version; won't link against Guile libraries, which
  45. may be present on the host system, but won't be available within the
  46. <command>chroot</command> environment in the next chapter.</para-->
  47. <para>这保证 Make-&make-version; 不会链接到 Guile 库。
  48. 宿主系统可能拥有 Guile 库,但它在 <command>chroot</command>
  49. 环境中不可用。</para>
  50. </listitem>
  51. </varlistentry>
  52. </variablelist>
  53. <para>编译该软件包:</para>
  54. <screen><userinput remap="make">make</userinput></screen>
  55. <!--para>Compilation is now complete. As discussed earlier, running the test
  56. suite is not mandatory for the temporary tools here in this chapter. To run
  57. the Make test suite anyway, issue the following command:</para-->
  58. <para>现在编译已经完成,正如前文所述,
  59. 没有必要在本章中运行临时工具的测试套件。如果一定要运行 Make
  60. 的测试套件,执行以下命令:</para>
  61. <screen><userinput remap="test">make check</userinput></screen>
  62. <para>安装该软件包:</para>
  63. <screen><userinput remap="install">make install</userinput></screen>
  64. </sect2>
  65. <sect2 role="content">
  66. <title/>
  67. <para>该软件包的详细信息可以在
  68. <xref linkend="contents-make"/> 中找到。</para>
  69. </sect2>
  70. </sect1>