source: chapter06/flex.xml@ 1798edf

Last change on this file since 1798edf was fa994c9, checked in by Manuel Canales Esparcia <manuel@…>, 19 years ago

Ported r7340 from trunk to alphabetical branch.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/alphabetical/BOOK@7343 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 4.5 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-system-flex" role="wrap">
9 <?dbhtml filename="flex.html"?>
10
11 <title>Flex-&flex-version;</title>
12
13 <indexterm zone="ch-system-flex">
14 <primary sortas="a-Flex">Flex</primary>
15 </indexterm>
16
17 <sect2 role="package">
18 <title/>
19
20 <para>The Flex package contains a utility for generating programs that
21 recognize patterns in text.</para>
22
23 <segmentedlist>
24 <segtitle>&buildtime;</segtitle>
25 <segtitle>&diskspace;</segtitle>
26
27 <seglistitem>
28 <seg>0.1 SBU</seg>
29 <seg>22.5 MB</seg>
30 </seglistitem>
31 </segmentedlist>
32
33 <segmentedlist>
34 <segtitle>&dependencies;</segtitle>
35
36 <seglistitem>
37 <seg>Bash, Binutils, Bison, Coreutils, Diffutils, GCC, Gettext,
38 Glibc, Grep, M4, Make, Patch, and Sed</seg>
39 </seglistitem>
40 </segmentedlist>
41
42 </sect2>
43
44 <sect2 role="installation">
45 <title>Installation of Flex</title>
46
47 <para>Flex contains several known bugs. Fix these with the following
48 patch:</para>
49
50<screen><userinput>patch -Np1 -i ../&flex-fixes-patch;</userinput></screen>
51
52 <para>The GNU autotools detects that the Flex source code has been
53 modified by the previous patch and tries to update the man page
54 accordingly. This does not work correctly on many systems, and the
55 default page is fine, so make sure it does not get regenerated:</para>
56
57<screen><userinput>touch doc/flex.1</userinput></screen>
58
59 <para>Prepare Flex for compilation:</para>
60
61<screen><userinput>./configure --prefix=/usr</userinput></screen>
62
63 <para>Compile the package:</para>
64
65<screen><userinput>make</userinput></screen>
66
67 <para>To test the results, issue:
68 <userinput>make check</userinput>.</para>
69
70 <para>Install the package:</para>
71
72<screen><userinput>make install</userinput></screen>
73
74 <para>There are some packages that expect to find the
75 <filename class="libraryfile">lex</filename> library in <filename
76 class="directory">/usr/lib</filename>. Create a symlink to account for
77 this:</para>
78
79<screen><userinput>ln -sv libfl.a /usr/lib/libl.a</userinput></screen>
80
81 <para>A few programs do not know about <command>flex</command> yet and
82 try to run its predecessor, <command>lex</command>. To support those
83 programs, create a wrapper script named <filename>lex</filename> that
84 calls <filename>flex</filename> in <command>lex</command> emulation
85 mode:</para>
86
87<screen><userinput>cat &gt; /usr/bin/lex &lt;&lt; "EOF"
88<literal>#!/bin/sh
89# Begin /usr/bin/lex
90
91exec /usr/bin/flex -l "$@"
92
93# End /usr/bin/lex</literal>
94EOF
95chmod -v 755 /usr/bin/lex</userinput></screen>
96
97 </sect2>
98
99 <sect2 id="contents-flex" role="content">
100 <title>Contents of Flex</title>
101
102 <segmentedlist>
103 <segtitle>Installed programs</segtitle>
104 <segtitle>Installed library</segtitle>
105
106 <seglistitem>
107 <seg>flex and lex</seg>
108 <seg>libfl.a</seg>
109 </seglistitem>
110 </segmentedlist>
111
112 <variablelist>
113 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
114 <?dbfo list-presentation="list"?>
115 <?dbhtml list-presentation="table"?>
116
117 <varlistentry id="flex">
118 <term><command>flex</command></term>
119 <listitem>
120 <para>A tool for generating programs that recognize patterns in text;
121 it allows for the versatility to specify the rules for pattern-finding,
122 eradicating the need to develop a specialized program</para>
123 <indexterm zone="ch-system-flex flex">
124 <primary sortas="b-flex">flex</primary>
125 </indexterm>
126 </listitem>
127 </varlistentry>
128
129 <varlistentry id="lex">
130 <term><command>lex</command></term>
131 <listitem>
132 <para>A script that runs <command>flex</command> in
133 <command>lex</command> emulation mode</para>
134 <indexterm zone="ch-system-flex lex">
135 <primary sortas="b-lex">lex</primary>
136 </indexterm>
137 </listitem>
138 </varlistentry>
139
140 <varlistentry id="libfl.a">
141 <term><filename class="libraryfile">libfl.a</filename></term>
142 <listitem>
143 <para>The <filename class="libraryfile">flex</filename> library</para>
144 <indexterm zone="ch-system-flex libfl.a">
145 <primary sortas="c-libfl.a">libfl.a</primary>
146 </indexterm>
147 </listitem>
148 </varlistentry>
149
150 </variablelist>
151
152 </sect2>
153
154</sect1>
Note: See TracBrowser for help on using the repository browser.