Commit d71be826 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Merge pull request #136 from albert-github/feature/bug_doc_arch_lex

Alternative way to get rules information from flex
parents 8eeaae0b 224fa96d
......@@ -190,13 +190,13 @@ could extract information from the XML output. Possible tools could be:
Since doxygen uses a lot of \c flex code it is important to understand
how \c flex works (for this one should read the man page)
and to understand what it is doing when \c flex is parsing some input.
Fortunately, when flex is used with the -d option it outputs what rules
Fortunately, when flex is used with the `-d` option it outputs what rules
matched. This makes it quite easy to follow what is going on for a
particular input fragment.
To make it easier to toggle debug information for a given flex file I
wrote the following perl script, which automatically adds or removes -d
from the correct line in the Makefile:
wrote the following perl script, which automatically adds or removes `-d`
from the correct line in the \c Makefile:
\verbatim
#!/usr/bin/perl
......@@ -236,6 +236,19 @@ $now = time;
utime $now, $now, $file
\endverbatim
Another way to get rules matching / debugging information from the flex code is in the following way:
\verbatim
touch src/<flex code file>.l
make LEX="flex -d"
\endverbatim
to remove the rules / debug information again:
\verbatim
touch src/<flex codefile>.l
make
\endverbatim
Note that by running doxygen with `-d lex` you get information about which flex
codefile is used.
\htmlonly
Return to the <a href="index.html">index</a>.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment