-
perhaps this has more to do with obeying %option c++ ?
Linux generates this line:
int yyFlexLexer::yywrap() { return 1; }
INSTEAD of
#define yywrap() 1;.
2009-07-23 20:37:46 UTC in GnuWin
-
the docs say:
`--yywrap, %option yywrap'
if unset (i.e., --noyywrap), makes the scanner not call yywrap() upon an end-of-file, but simply assume that there are no more files to scan (until the user points yyin at a new file and calls yylex() again).
%option noyywrap in linux works as expected the line "#define yywrap() 1 " does not appear in the .cc file.
%option noyywrap in...
2009-07-23 20:18:53 UTC in GnuWin
-
sweet! Thank you for doing this work for us! I look forward to getting it.
2009-05-05 14:57:00 UTC in GnuWin
-
I'm trying to use a yacc gramer written on unix for bison 2.4 on gnuwin32 bison 2.1 and running into some important differences in the file. When, if ever, will the windows version be upgraded to 2.4?
-Wayne.
2009-05-04 19:05:23 UTC in GnuWin