bison.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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>Fix an issue with the testsuite, which doesn't correctly handle
  33. certain output from GCC-&gcc-version;:</para>
  34. <screen><userinput remap="pre">patch -Np1 -i ../&bison-gcc-patch;</userinput></screen>
  35. <para>Prepare Bison for compilation:</para>
  36. <screen><userinput remap="configure">./configure --prefix=/usr</userinput></screen>
  37. <para>The configure system causes Bison to be built without support for
  38. internationalization of error messages if a <command>bison</command>
  39. program is not already in $PATH. The following addition will correct
  40. this:</para>
  41. <screen><userinput remap="configure">echo '#define YYENABLE_NLS 1' &gt;&gt; lib/config.h</userinput></screen>
  42. <para>Compile the package:</para>
  43. <screen><userinput remap="make">make</userinput></screen>
  44. <para>To test the results (about 0.5 SBU), issue:</para>
  45. <screen><userinput remap="test">make check</userinput></screen>
  46. <para>Install the package:</para>
  47. <screen><userinput remap="install">make install</userinput></screen>
  48. </sect2>
  49. <sect2 id="contents-bison" role="content">
  50. <title>Contents of Bison</title>
  51. <segmentedlist>
  52. <segtitle>Installed programs</segtitle>
  53. <segtitle>Installed library</segtitle>
  54. <seglistitem>
  55. <seg>bison and yacc</seg>
  56. <seg>liby.a</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.a">
  87. <term><filename class="libraryfile">liby.a</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.a">
  93. <primary sortas="c-liby.a">liby.a</primary>
  94. </indexterm>
  95. </listitem>
  96. </varlistentry>
  97. </variablelist>
  98. </sect2>
  99. </sect1>