flex.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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-flex" xreflabel="Flex">
  7. <title>Flex-&flex-version;</title>
  8. <?dbhtml filename="flex.html"?>
  9. <indexterm zone="ch-system-flex"><primary sortas="a-Flex">Flex</primary></indexterm>
  10. <para>The Flex package contains a utility for generating programs that
  11. recognize patterns in text.</para>
  12. <screen>&buildtime; 0.1 SBU
  13. &diskspace; 3.4 MB</screen>
  14. <para>Flex installation depends on: Bash, Binutils, Bison, Coreutils, Diffutils,
  15. GCC, Gettext, Glibc, Grep, M4, Make, Sed.</para>
  16. <sect2>
  17. <title>Installation of Flex</title>
  18. <para>Flex contains several known bugs. Fix these with the following patch:</para>
  19. <screen><userinput>patch -Np1 -i ../flex-&flex-version;-debian-fixes-2.patch</userinput></screen>
  20. <para>The GNU autotools detects that the Flex source code has been modified by the patch,
  21. and tries to update the man pages to include those changes, but this breaks on many
  22. systems, and the default pages are fine, so make sure they don't get renegerated:</para>
  23. <screen><userinput>touch doc/*.1</userinput></screen>
  24. <para>Now prepare Flex for compilation:</para>
  25. <screen><userinput>./configure --prefix=/usr</userinput></screen>
  26. <para>Compile the package:</para>
  27. <screen><userinput>make</userinput></screen>
  28. <para>To test the results, issue:
  29. <userinput>make check</userinput>.</para>
  30. <para>Now install the package:</para>
  31. <screen><userinput>make install</userinput></screen>
  32. <para>There are some packages that expect to find the <emphasis>lex</emphasis>
  33. library in <filename>/usr/lib</filename>. Create a symlink to account for
  34. this:</para>
  35. <screen><userinput>ln -s libfl.a /usr/lib/libl.a</userinput></screen>
  36. <para>A few programs don't know about <command>flex</command> yet and try
  37. to run its predecessor <command>lex</command>. To support those programs,
  38. create a wrapper script named <filename>lex</filename> that calls
  39. <command>flex</command> in <emphasis>lex</emphasis> emulation mode:</para>
  40. <screen><userinput>cat &gt; /usr/bin/lex &lt;&lt; "EOF"</userinput>
  41. #!/bin/sh
  42. # Begin /usr/bin/lex
  43. exec /usr/bin/flex -l "$@"
  44. # End /usr/bin/lex
  45. <userinput>EOF
  46. chmod 755 /usr/bin/lex</userinput></screen>
  47. </sect2>
  48. <sect2 id="contents-flex"><title>Contents of Flex</title>
  49. <para><emphasis>Installed programs</emphasis>: flex, flex++ (link to flex)
  50. and lex</para>
  51. <para><emphasis>Installed library</emphasis>: libfl.a</para>
  52. </sect2>
  53. <sect2><title>Short descriptions</title>
  54. <indexterm zone="ch-system-flex flex"><primary sortas="b-flex">flex</primary></indexterm>
  55. <para id="flex"><command>flex</command> is a tool for generating programs that
  56. recognize patterns in text. Pattern recognition is useful in many applications.
  57. From a set of rules on what to look for, flex makes a program that looks for
  58. those patterns. The reason to use flex is that it is much easier to specify
  59. the rules for a pattern-finding program than to write the program.</para>
  60. <indexterm zone="ch-system-flex flex-"><primary sortas="b-flex++">flex++</primary></indexterm>
  61. <para id="flex-"><command>flex++</command> invokes a version of flex that is used
  62. exclusively for C++ scanners.</para>
  63. <indexterm zone="ch-system-flex libfl.a"><primary sortas="c-libfl.a">libfl.a</primary></indexterm>
  64. <para id="libfl.a"><command>libfl.a</command> is the flex library.</para>
  65. </sect2>
  66. </sect1>