source: clfs-sysroot/BOOK/final-system/common/bison.xml@ e74e775

Last change on this file since e74e775 was cc8d737, checked in by Joe Ciccone <jciccone@…>, 16 years ago

Use cat instead of echo wherever possible.

  • Property mode set to 100644
File size: 3.4 KB
RevLine 
[02095ae]1<?xml version="1.0" encoding="ISO-8859-1"?>
[c439b8a]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[02095ae]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-system-bison" role="wrap">
9 <?dbhtml filename="bison.html"?>
10
11 <title>Bison-&bison-version;</title>
12
13 <indexterm zone="ch-system-bison">
14 <primary sortas="a-Bison">Bison</primary>
15 </indexterm>
16
17 <sect2 role="package">
18 <title/>
19
20 <para>The Bison package contains a parser generator.</para>
21
22 </sect2>
23
24 <sect2 role="installation">
25 <title>Installation of Bison</title>
26
27 <para os="a">Prepare Bison for compilation:</para>
28
[cee2ca2]29<screen os="b"><userinput>./configure --build=${CLFS_HOST} --host=${CLFS_TARGET} \
30 --prefix=/usr</userinput></screen>
[02095ae]31
[d30b2ab]32 <para os="b1">The configure system causes Bison to be built without support
[02095ae]33 for internationalization of error messages if a <command>bison</command>
[65df7b1]34 program is not already in ${PATH}. The following addition will correct
[02095ae]35 this:</para>
36
[cc8d737]37<screen os="b2"><userinput>cat &gt;&gt; config.h &lt;&lt; "EOF"
38#define YYENABLE_NLS 1
39EOF</userinput></screen>
[02095ae]40
41 <para os="c">Compile the package:</para>
42
43<screen os="d"><userinput>make</userinput></screen>
44
45 <para os="e">Install the package:</para>
46
[586feb7]47<screen os="f"><userinput>make DESTDIR=${CLFS} install</userinput></screen>
[02095ae]48
49 </sect2>
50
51 <sect2 id="contents-bison" role="content">
52 <title>Contents of Bison</title>
53
54 <segmentedlist>
55 <segtitle>Installed programs</segtitle>
56 <segtitle>Installed library</segtitle>
57
58 <seglistitem>
59 <seg>bison and yacc</seg>
60 <seg>liby.a</seg>
61 </seglistitem>
62 </segmentedlist>
63
64 <variablelist>
65 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
66 <?dbfo list-presentation="list"?>
67 <?dbhtml list-presentation="table"?>
68
69 <varlistentry id="bison">
70 <term><command>bison</command></term>
71 <listitem>
72 <para>Generates, from a series of rules, a program for analyzing
73 the structure of text files; Bison is a replacement for Yacc (Yet
74 Another Compiler Compiler)</para>
75 <indexterm zone="ch-system-bison bison">
76 <primary sortas="b-bison">bison</primary>
77 </indexterm>
78 </listitem>
79 </varlistentry>
80
81 <varlistentry id="yacc">
82 <term><command>yacc</command></term>
83 <listitem>
84 <para>A wrapper for <command>bison</command>, meant for programs that
85 still call <command>yacc</command> instead of <command>bison</command>;
86 it calls <command>bison</command> with the <option>-y</option>
87 option</para>
88 <indexterm zone="ch-system-bison yacc">
89 <primary sortas="b-yacc">yacc</primary>
90 </indexterm>
91 </listitem>
92 </varlistentry>
93
94 <varlistentry id="liby.a">
95 <term><filename class="libraryfile">liby.a</filename></term>
96 <listitem>
97 <para>The Yacc library containing implementations of Yacc-compatible
98 <emphasis>yyerror</emphasis> and <emphasis>main</emphasis> functions;
99 this library is normally not very useful, but POSIX requires it</para>
100 <indexterm zone="ch-system-bison liby.a">
101 <primary sortas="c-liby.a">liby.a</primary>
102 </indexterm>
103 </listitem>
104 </varlistentry>
105
106 </variablelist>
107
108 </sect2>
109
110</sect1>
Note: See TracBrowser for help on using the repository browser.