bison.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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. <para>Prepare Bison for compilation:</para>
  33. <screen><userinput remap="configure">./configure --prefix=/usr --docdir=/usr/share/doc/bison-&bison-version;</userinput></screen>
  34. <para>Compile the package:</para>
  35. <screen><userinput remap="make">make</userinput></screen>
  36. <!--
  37. <para>To test the results (about 2.2 SBU), issue:</para>
  38. <screen><userinput remap="test">make check</userinput></screen>
  39. -->
  40. <para>There is a circular dependency between bison and flex with regard to
  41. the checks. If desired, after installing flex in the next section, the
  42. bison package can be rebuilt and the bison checks can be run with
  43. <command>make check</command>.</para>
  44. <para>Install the package:</para>
  45. <screen><userinput remap="install">make install</userinput></screen>
  46. </sect2>
  47. <sect2 id="contents-bison" role="content">
  48. <title>Contents of Bison</title>
  49. <segmentedlist>
  50. <segtitle>Installed programs</segtitle>
  51. <segtitle>Installed library</segtitle>
  52. <segtitle>Installed directory</segtitle>
  53. <seglistitem>
  54. <seg>bison and yacc</seg>
  55. <seg>liby.a</seg>
  56. <seg>/usr/share/bison</seg>
  57. </seglistitem>
  58. </segmentedlist>
  59. <variablelist>
  60. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  61. <?dbfo list-presentation="list"?>
  62. <?dbhtml list-presentation="table"?>
  63. <varlistentry id="bison">
  64. <term><command>bison</command></term>
  65. <listitem>
  66. <para>Generates, from a series of rules, a program for analyzing the
  67. structure of text files; Bison is a replacement for Yacc (Yet Another
  68. Compiler Compiler)</para>
  69. <indexterm zone="ch-system-bison bison">
  70. <primary sortas="b-bison">bison</primary>
  71. </indexterm>
  72. </listitem>
  73. </varlistentry>
  74. <varlistentry id="yacc">
  75. <term><command>yacc</command></term>
  76. <listitem>
  77. <para>A wrapper for <command>bison</command>, meant for programs that
  78. still call <command>yacc</command> instead of <command>bison</command>;
  79. it calls <command>bison</command> with the <parameter>-y</parameter>
  80. option</para>
  81. <indexterm zone="ch-system-bison yacc">
  82. <primary sortas="b-yacc">yacc</primary>
  83. </indexterm>
  84. </listitem>
  85. </varlistentry>
  86. <varlistentry id="liby">
  87. <term><filename class="libraryfile">liby</filename></term>
  88. <listitem>
  89. <para>The Yacc library containing implementations of Yacc-compatible
  90. <function>yyerror</function> and <function>main</function> functions;
  91. this library is normally not very useful, but POSIX requires it</para>
  92. <indexterm zone="ch-system-bison liby">
  93. <primary sortas="c-liby">liby</primary>
  94. </indexterm>
  95. </listitem>
  96. </varlistentry>
  97. </variablelist>
  98. </sect2>
  99. </sect1>