在mac os中编译lex和yacc时出错

时间:2016-11-04 15:22:51

标签: xcode macos flex-lexer yacc lex

我正在开发一个lex和yacc程序,在我的设计MAC OS上。

当我尝试执行以下操作时:

gcc sample.tab.c lex.yy.c -ly -ll 

它向我展示了很多错误,最后......

致命错误:发出的错误太多,现在停止[-ferror-limit =]

出现了一些错误:

./sample.tab.h:44:6: error: expected identifier 
     if = 260,
     ^
./sample.tab.h:46:6: error: expected identifier
     else = 262,
     ^
./sample.tab.h:48:6: error: expected identifier
     while = 264,
     ^
./sample.tab.h:53:6: error: expected identifier
     return = 269,

有人可以帮我吗?

谢谢..

1 个答案:

答案 0 :(得分:1)

您不能将C关键字用作非终端的名称。这就是为什么通常使用ALL-CAPS作为非终端名称。所以你的flex文件可能包括

Send

如果你是野牛,你可以声明别名:

while    { return WHILE; }
return  {  return  RETURN; }

允许您编写如下规则:

%token WHILE "while"
%token RETURN "return"