flex.xml 3.7 KB

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