make.xml 2.7 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="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>First, work around an error caused by 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>The meaning of the configure option:</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. </listitem>
  48. </varlistentry>
  49. </variablelist>
  50. <para>编译该软件包:</para>
  51. <screen><userinput remap="make">make</userinput></screen>
  52. <!--para>Compilation is now complete. As discussed earlier, running the test
  53. suite is not mandatory for the temporary tools here in this chapter. To run
  54. the Make test suite anyway, issue the following command:</para-->
  55. <para>现在编译已经完成,正如前文所述,
  56. 没有必要在本章中运行临时工具的测试套件。如果一定要运行 ???
  57. 的测试套件,执行下列命令:</para>
  58. <screen><userinput remap="test">make check</userinput></screen>
  59. <para>安装该软件包:</para>
  60. <screen><userinput remap="install">make install</userinput></screen>
  61. </sect2>
  62. <sect2 role="content">
  63. <title/>
  64. <para>该软件包的详细信息可以在
  65. <xref linkend="contents-make"/> 中找到。</para>
  66. </sect2>
  67. </sect1>