bison.xml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
  3. <!ENTITY % general-entities SYSTEM "../general.ent">
  4. %general-entities;
  5. ]>
  6. <sect1 id="ch-system-bison" xreflabel="Bison" role="wrap">
  7. <title>Bison-&bison-version;</title>
  8. <?dbhtml filename="bison.html"?>
  9. <indexterm zone="ch-system-bison"><primary sortas="a-Bison">Bison</primary></indexterm>
  10. <sect2 role="package"><title/>
  11. <para>The Bison package contains a parser generator.</para>
  12. <segmentedlist>
  13. <segtitle>&buildtime;</segtitle>
  14. <segtitle>&diskspace;</segtitle>
  15. <seglistitem><seg>0.6 SBU</seg><seg>10.6 MB</seg></seglistitem>
  16. </segmentedlist>
  17. <segmentedlist>
  18. <segtitle>Bison installation depends on</segtitle>
  19. <seglistitem><seg>Bash, Binutils, Coreutils, Diffutils,
  20. GCC, Gettext, Glibc, Grep, M4, Make, Sed</seg></seglistitem>
  21. </segmentedlist>
  22. </sect2>
  23. <sect2 role="installation">
  24. <title>Installation of Bison</title>
  25. <para>Prepare Bison for compilation:</para>
  26. <screen><userinput>./configure --prefix=/usr</userinput></screen>
  27. <para>Compile the package:</para>
  28. <screen><userinput>make</userinput></screen>
  29. <para>To test the results, issue:
  30. <userinput>make check</userinput>.</para>
  31. <para>Now install the package:</para>
  32. <screen><userinput>make install</userinput></screen>
  33. </sect2>
  34. <sect2 id="contents-bison" role="content"><title>Contents of Bison</title>
  35. <segmentedlist>
  36. <segtitle>Installed programs</segtitle>
  37. <segtitle>Installed library</segtitle>
  38. <seglistitem><seg>bison and yacc</seg><seg>liby.a</seg></seglistitem>
  39. </segmentedlist>
  40. <variablelist><title>Short descriptions</title>
  41. <varlistentry id="bison">
  42. <term><command>bison</command></term>
  43. <listitem>
  44. <indexterm zone="ch-system-bison bison"><primary sortas="b-bison">bison</primary></indexterm>
  45. <para>generates, from a series of rules, a program
  46. for analyzing the structure of text files. <command>bison</command> is a replacement for <command>yacc</command>
  47. (Yet Another Compiler Compiler).</para>
  48. </listitem>
  49. </varlistentry>
  50. <varlistentry id="yacc">
  51. <term><command>yacc</command></term>
  52. <listitem>
  53. <indexterm zone="ch-system-bison yacc"><primary sortas="b-yacc">yacc</primary></indexterm>
  54. <para>is a wrapper for <command>bison</command>, meant for programs
  55. that still call <command>yacc</command> instead of <command>bison</command>.
  56. It calls <command>bison</command> with the <parameter>-y</parameter> option.</para>
  57. </listitem>
  58. </varlistentry>
  59. <varlistentry id="liby.a">
  60. <term><filename class="libraryfile">liby.a</filename></term>
  61. <listitem>
  62. <indexterm zone="ch-system-bison liby.a"><primary sortas="c-liby.a">liby.a</primary></indexterm>
  63. <para>is the Yacc library containing
  64. implementations of Yacc-compatible yyerror and main functions. This library
  65. is normally not very useful, but POSIX requires it.</para>
  66. </listitem>
  67. </varlistentry>
  68. </variablelist>
  69. </sect2>
  70. </sect1>