flex.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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" role="content"><title>Contents of Flex</title>
  57. <segmentedlist>
  58. <segtitle>Installed programs</segtitle>
  59. <segtitle>Installed library</segtitle>
  60. <seglistitem><seg>flex, flex++ (link to flex) and lex</seg>
  61. <seg>libfl.a</seg></seglistitem>
  62. </segmentedlist>
  63. <variablelist><title>Short descriptions</title>
  64. <varlistentry>
  65. <term id="flex"><command>flex</command></term>
  66. <listitem>
  67. <indexterm zone="ch-system-flex flex"><primary sortas="b-flex">flex</primary></indexterm>
  68. <para>is a tool for generating programs that
  69. recognize patterns in text. Pattern recognition is useful in many applications.
  70. From a set of rules on what to look for, flex makes a program that looks for
  71. those patterns. The reason to use flex is that it is much easier to specify
  72. the rules for a pattern-finding program than to write the program.</para>
  73. </listitem>
  74. </varlistentry>
  75. <varlistentry>
  76. <term id="flex-"><command>flex++</command></term>
  77. <listitem>
  78. <indexterm zone="ch-system-flex flex-"><primary sortas="b-flex++">flex++</primary></indexterm>
  79. <para>invokes a version of flex that is used exclusively for C++ scanners.</para>
  80. </listitem>
  81. </varlistentry>
  82. <varlistentry>
  83. <term id="libfl.a"><command>libfl.a</command></term>
  84. <listitem>
  85. <indexterm zone="ch-system-flex libfl.a"><primary sortas="c-libfl.a">libfl.a</primary></indexterm>
  86. <para>is the flex library.</para>
  87. </listitem>
  88. </varlistentry>
  89. </variablelist>
  90. </sect2>
  91. </sect1>