source: chapter06/flex.xml@ 1868699

Last change on this file since 1868699 was 1868699, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Ported r7435:7448 from trunk to udev_update branch.

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

  • Property mode set to 100644
File size: 4.0 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>21.3 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, and Sed</seg>
39 </seglistitem>
40 </segmentedlist>
41
42 </sect2>
43
44 <sect2 role="installation">
45 <title>Installation of Flex</title>
46
47 <para>Prepare Flex for compilation:</para>
48
49<screen><userinput>./configure --prefix=/usr</userinput></screen>
50
51 <para>Compile the package:</para>
52
53<screen><userinput>make</userinput></screen>
54
55 <para>To test the results, issue:
56 <userinput>make check</userinput>.</para>
57
58 <para>Install the package:</para>
59
60<screen><userinput>make install</userinput></screen>
61
62 <para>There are some packages that expect to find the
63 <filename class="libraryfile">lex</filename> library in <filename
64 class="directory">/usr/lib</filename>. Create a symlink to account for
65 this:</para>
66
67<screen><userinput>ln -sv libfl.a /usr/lib/libl.a</userinput></screen>
68
69 <para>A few programs do not know about <command>flex</command> yet and
70 try to run its predecessor, <command>lex</command>. To support those
71 programs, create a wrapper script named <filename>lex</filename> that
72 calls <filename>flex</filename> in <command>lex</command> emulation
73 mode:</para>
74
75<screen><userinput>cat &gt; /usr/bin/lex &lt;&lt; "EOF"
76<literal>#!/bin/sh
77# Begin /usr/bin/lex
78
79exec /usr/bin/flex -l "$@"
80
81# End /usr/bin/lex</literal>
82EOF
83chmod -v 755 /usr/bin/lex</userinput></screen>
84
85 </sect2>
86
87 <sect2 id="contents-flex" role="content">
88 <title>Contents of Flex</title>
89
90 <segmentedlist>
91 <segtitle>Installed programs</segtitle>
92 <segtitle>Installed library</segtitle>
93
94 <seglistitem>
95 <seg>flex and lex</seg>
96 <seg>libfl.a</seg>
97 </seglistitem>
98 </segmentedlist>
99
100 <variablelist>
101 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
102 <?dbfo list-presentation="list"?>
103 <?dbhtml list-presentation="table"?>
104
105 <varlistentry id="flex">
106 <term><command>flex</command></term>
107 <listitem>
108 <para>A tool for generating programs that recognize patterns in text;
109 it allows for the versatility to specify the rules for pattern-finding,
110 eradicating the need to develop a specialized program</para>
111 <indexterm zone="ch-system-flex flex">
112 <primary sortas="b-flex">flex</primary>
113 </indexterm>
114 </listitem>
115 </varlistentry>
116
117 <varlistentry id="lex">
118 <term><command>lex</command></term>
119 <listitem>
120 <para>A script that runs <command>flex</command> in
121 <command>lex</command> emulation mode</para>
122 <indexterm zone="ch-system-flex lex">
123 <primary sortas="b-lex">lex</primary>
124 </indexterm>
125 </listitem>
126 </varlistentry>
127
128 <varlistentry id="libfl.a">
129 <term><filename class="libraryfile">libfl.a</filename></term>
130 <listitem>
131 <para>The <filename class="libraryfile">flex</filename> library</para>
132 <indexterm zone="ch-system-flex libfl.a">
133 <primary sortas="c-libfl.a">libfl.a</primary>
134 </indexterm>
135 </listitem>
136 </varlistentry>
137
138 </variablelist>
139
140 </sect2>
141
142</sect1>
Note: See TracBrowser for help on using the repository browser.