flex.xml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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>Prepare Flex for compilation:</para>
  19. <screen><userinput>./configure --prefix=/usr</userinput></screen>
  20. <para>Compile the package:</para>
  21. <screen><userinput>make</userinput></screen>
  22. <para>To test the results, issue:
  23. <userinput>make bigcheck</userinput>.</para>
  24. <para>Now install the package:</para>
  25. <screen><userinput>make install</userinput></screen>
  26. <para>There are some packages that expect to find the <emphasis>lex</emphasis>
  27. library in <filename>/usr/lib</filename>. Create a symlink to account for
  28. this:</para>
  29. <screen><userinput>ln -s libfl.a /usr/lib/libl.a</userinput></screen>
  30. <para>A few programs don't know about <command>flex</command> yet and try
  31. to run its predecessor <command>lex</command>. To support those programs,
  32. create a wrapper script named <filename>lex</filename> that calls
  33. <command>flex</command> in <emphasis>lex</emphasis> emulation mode:</para>
  34. <screen><userinput>cat &gt; /usr/bin/lex &lt;&lt; "EOF"</userinput>
  35. #!/bin/sh
  36. # Begin /usr/bin/lex
  37. exec /usr/bin/flex -l "$@"
  38. # End /usr/bin/lex
  39. <userinput>EOF
  40. chmod 755 /usr/bin/lex</userinput></screen>
  41. </sect2>
  42. <sect2 id="contents-flex"><title>Contents of Flex</title>
  43. <para><emphasis>Installed programs</emphasis>: flex, flex++ (link to flex)
  44. and lex</para>
  45. <para><emphasis>Installed library</emphasis>: libfl.a</para>
  46. </sect2>
  47. <sect2><title>Short descriptions</title>
  48. <indexterm zone="ch-system-flex flex"><primary sortas="b-flex">flex</primary></indexterm>
  49. <para id="flex"><command>flex</command> is a tool for generating programs that
  50. recognize patterns in text. Pattern recognition is useful in many applications.
  51. From a set of rules on what to look for, flex makes a program that looks for
  52. those patterns. The reason to use flex is that it is much easier to specify
  53. the rules for a pattern-finding program than to write the program.</para>
  54. <indexterm zone="ch-system-flex flex-"><primary sortas="b-flex++">flex++</primary></indexterm>
  55. <para id="flex-"><command>flex++</command> invokes a version of flex that is used
  56. exclusively for C++ scanners.</para>
  57. <indexterm zone="ch-system-flex libfl.a"><primary sortas="c-libfl.a">libfl.a</primary></indexterm>
  58. <para id="libfl.a"><command>libfl.a</command> is the flex library.</para>
  59. </sect2>
  60. </sect1>