Open GoogleCodeExporter opened 9 years ago
[deleted comment]
OK seems to be incompatibility issue with bison 3+, downgrading to 2.7 fixes it
Original comment by Rein...@gmail.com
on 14 Sep 2014 at 7:48
I had the same error on Windows.
I disabled the perl regeneration of follex.cpp in the makefile.
Then I replaced all ZZ_* with their integer values in the follex.cpp and then
it compiled successfully on Windows and Cygwin.
Original comment by Tonch...@gmail.com
on 21 Jan 2015 at 11:02
Attachments:
I had the same error on Windows.
Modify the fol.y add then it compiled successfully on Windows and Cygwin.
sample:
%{
#define YYSTYPE int
#define YYDEBUG 1
#ifndef YYTOKENTYPE
# define YYTOKENTYPE
enum yytokentype
{
ZZ_NUM = 258,
ZZ_DOTDOTDOT = 259,
ZZ_STRING = 260,
ZZ_INCLUDE = 261,
ZZ_PREDICATE = 262,
ZZ_FUNCTION = 263,
ZZ_CONSTANT = 264,
ZZ_VARIABLE = 265,
ZZ_TYPE = 266,
ZZ_FORALL = 267,
ZZ_EXIST = 268,
ZZ_EQUIV = 269,
ZZ_IMPLY = 270
};
#endif
%}
Original comment by suiyaola...@gmail.com
on 16 Mar 2015 at 1:04
Original issue reported on code.google.com by
Rein...@gmail.com
on 15 Aug 2014 at 8:28