bison.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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</userinput></screen>
  34. <para>The configure system causes bison to be built without support for
  35. internationalization of error messages if a <command>bison</command>
  36. program is not already in $PATH. The following addition will correct
  37. this:</para>
  38. <screen><userinput remap="configure">echo '#define YYENABLE_NLS 1' &gt;&gt; config.h</userinput></screen>
  39. <para>Compile the package:</para>
  40. <screen><userinput remap="make">make</userinput></screen>
  41. <para>To test the results (about 0.5 SBU), issue:</para>
  42. <screen><userinput remap="test">make check</userinput></screen>
  43. <para>Install the package:</para>
  44. <screen><userinput remap="install">make install</userinput></screen>
  45. </sect2>
  46. <sect2 id="contents-bison" role="content">
  47. <title>Contents of Bison</title>
  48. <segmentedlist>
  49. <segtitle>Installed programs</segtitle>
  50. <segtitle>Installed library</segtitle>
  51. <seglistitem>
  52. <seg>bison and yacc</seg>
  53. <seg>liby.a</seg>
  54. </seglistitem>
  55. </segmentedlist>
  56. <variablelist>
  57. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  58. <?dbfo list-presentation="list"?>
  59. <?dbhtml list-presentation="table"?>
  60. <varlistentry id="bison">
  61. <term><command>bison</command></term>
  62. <listitem>
  63. <para>Generates, from a series of rules, a program for analyzing the
  64. structure of text files; Bison is a replacement for Yacc (Yet Another
  65. Compiler Compiler)</para>
  66. <indexterm zone="ch-system-bison bison">
  67. <primary sortas="b-bison">bison</primary>
  68. </indexterm>
  69. </listitem>
  70. </varlistentry>
  71. <varlistentry id="yacc">
  72. <term><command>yacc</command></term>
  73. <listitem>
  74. <para>A wrapper for <command>bison</command>, meant for programs that
  75. still call <command>yacc</command> instead of <command>bison</command>;
  76. it calls <command>bison</command> with the <parameter>-y</parameter>
  77. option</para>
  78. <indexterm zone="ch-system-bison yacc">
  79. <primary sortas="b-yacc">yacc</primary>
  80. </indexterm>
  81. </listitem>
  82. </varlistentry>
  83. <varlistentry id="liby.a">
  84. <term><filename class="libraryfile">liby.a</filename></term>
  85. <listitem>
  86. <para>The Yacc library containing implementations of Yacc-compatible
  87. <function>yyerror</function> and <function>main</function> functions;
  88. this library is normally not very useful, but POSIX requires it</para>
  89. <indexterm zone="ch-system-bison liby.a">
  90. <primary sortas="c-liby.a">liby.a</primary>
  91. </indexterm>
  92. </listitem>
  93. </varlistentry>
  94. </variablelist>
  95. </sect2>
  96. </sect1>