re2c does the same thing as lex/flex in the sense that it converts 
regular expression specifications to C/C++ code. But the specifications 
differ: re2c expects comments of the form "/*!re2c ... */". You won't 
find any in pcc code (`grep -r "re2c" <pcc-source-directory>` outputs 
nothing).To use re2c instead of lex/flex, you'll need to rewrite all 
lex/flex specifications in re2c-compatible way. That's possible, but 
requires quite a lot of work, and you'll need your own pcc fork.

Unlike lex/flex, re2c by default dumps output to stdout, that's why you 
got that error about missing file.

Hope that helps. :)

Ulya

------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
Re2c-general mailing list
Re2c-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/re2c-general

Reply via email to