bison.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  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-system-bison" role="wrap">
  8. <?dbhtml filename="bison.html"?>
  9. <sect1info condition="script">
  10. <productname>bison</productname>
  11. <productnumber>&bison-version;</productnumber>
  12. <address>&bison-url;</address>
  13. </sect1info>
  14. <title>Bison-&bison-version;</title>
  15. <indexterm zone="ch-system-bison">
  16. <primary sortas="a-Bison">Bison</primary>
  17. </indexterm>
  18. <sect2 role="package">
  19. <title/>
  20. <para>The Bison package contains a parser generator.</para>
  21. <segmentedlist>
  22. <segtitle>&buildtime;</segtitle>
  23. <segtitle>&diskspace;</segtitle>
  24. <seglistitem>
  25. <seg>&bison-ch6-sbu;</seg>
  26. <seg>&bison-ch6-du;</seg>
  27. </seglistitem>
  28. </segmentedlist>
  29. </sect2>
  30. <sect2 role="installation">
  31. <title>Installation of Bison</title>
  32. <!--
  33. <para>First, fix a build problem with the current version:</para>
  34. <screen><userinput remap="pre">sed -i '9327 s/mv/cp/' Makefile.in</userinput></screen>
  35. -->
  36. <para>Prepare Bison for compilation:</para>
  37. <screen><userinput remap="configure">./configure --prefix=/usr --docdir=/usr/share/doc/bison-&bison-version;</userinput></screen>
  38. <!-- I could not find a race condidtion in the current version.
  39. <para>Compile the package, but work around a race condition in the
  40. current version:</para>
  41. <screen><userinput remap="make">make -j1</userinput></screen>-->
  42. <para>Compile the package:</para>
  43. <screen><userinput remap="make">make</userinput></screen>
  44. <para>To test the results (about 5.5 SBU), issue:</para>
  45. <screen><userinput remap="test">make check</userinput></screen>
  46. <para>Fourteen tests fail in the "Diagnostics" section, probably because of
  47. missing locales.</para>
  48. <!--
  49. <para>There is a circular dependency between bison and flex with regard to
  50. the checks. If desired, after installing flex in the next section, the
  51. bison package can be rebuilt and the bison checks can be run with
  52. <command>make check</command>.</para>
  53. -->
  54. <para>Install the package:</para>
  55. <screen><userinput remap="install">make install</userinput></screen>
  56. </sect2>
  57. <sect2 id="contents-bison" role="content">
  58. <title>Contents of Bison</title>
  59. <segmentedlist>
  60. <segtitle>Installed programs</segtitle>
  61. <segtitle>Installed library</segtitle>
  62. <segtitle>Installed directory</segtitle>
  63. <seglistitem>
  64. <seg>bison and yacc</seg>
  65. <seg>liby.a</seg>
  66. <seg>/usr/share/bison</seg>
  67. </seglistitem>
  68. </segmentedlist>
  69. <variablelist>
  70. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  71. <?dbfo list-presentation="list"?>
  72. <?dbhtml list-presentation="table"?>
  73. <varlistentry id="bison">
  74. <term><command>bison</command></term>
  75. <listitem>
  76. <para>Generates, from a series of rules, a program for analyzing the
  77. structure of text files; Bison is a replacement for Yacc (Yet Another
  78. Compiler Compiler)</para>
  79. <indexterm zone="ch-system-bison bison">
  80. <primary sortas="b-bison">bison</primary>
  81. </indexterm>
  82. </listitem>
  83. </varlistentry>
  84. <varlistentry id="yacc">
  85. <term><command>yacc</command></term>
  86. <listitem>
  87. <para>A wrapper for <command>bison</command>, meant for programs that
  88. still call <command>yacc</command> instead of <command>bison</command>;
  89. it calls <command>bison</command> with the <parameter>-y</parameter>
  90. option</para>
  91. <indexterm zone="ch-system-bison yacc">
  92. <primary sortas="b-yacc">yacc</primary>
  93. </indexterm>
  94. </listitem>
  95. </varlistentry>
  96. <varlistentry id="liby">
  97. <term><filename class="libraryfile">liby</filename></term>
  98. <listitem>
  99. <para>The Yacc library containing implementations of Yacc-compatible
  100. <function>yyerror</function> and <function>main</function> functions;
  101. this library is normally not very useful, but POSIX requires it</para>
  102. <indexterm zone="ch-system-bison liby">
  103. <primary sortas="c-liby">liby</primary>
  104. </indexterm>
  105. </listitem>
  106. </varlistentry>
  107. </variablelist>
  108. </sect2>
  109. </sect1>