Flex编译错误

时间:2012-10-21 18:00:35

标签: compiler-construction compiler-errors lex flex-lexer

我正在尝试描述玩具语言的语法。以下是tokens.lex

的内容
/* Simple scanner for a toy language */

%{
/* need this for the call to atof() below */
#include <string.h>
#include <math.h>
%}

IDENTIFIER [a-z][a-z0-9]*
DIGIT      [0-9]

%%
{DIGIT}+ {
  printf("int: %s (%d)\n", yytext, atoi(yytext));
  yylval.string = new std::string(yytext, yyleng);
} /* define int type */

{DIGIT}+"."{DIGIT}+ {
  printf("float: %s (%d)\n", yytext, atof(yytext));
  yylval.string = new std::string(yytext, yyleng);
} /* define float type */

b[\'\"]{IDENTIFIER}[\'\"] {
  printf("bstream: %s\n", yytext);
  yylval.string = new std::string(yytext, yyleng);
} /* define bstream type */

u[\'\"]{IDENTIFIER}[\'\"] {
  printf("ustream: %s\n", yytext);
  yylval.string = new std::string(yytext, yyleng);
} /* define ustream type */

if|then|begin|end|procedure|function {
  printf( "A keyword: %s\n", yytext );
}

{IDENTIFIER}      printf( "identifier: %s\n", yytext );

"+"|"-"|"*"|"/"   printf( "operator: %s\n", yytext );

"{"[^}\n]*"}"     /* Remove one-line comments */

[ \t\n]+          /* Remove whitespace */

.                 printf( "Unrecognized character: %s\n", yytext );

%%
int argc;
char **argv;
int main(argc, argv);
  {
  if ( argc > 0 )
    yyin = fopen( argv[0], "r" );
  else
    yyin = stdin;
  yylex();
  }

然后我尝试编译它:

lex tokens.lex && g++ -lfl lex.yy.c

编译器返回几个错误:

tokens.lex:51:20: error: expression list treated as compound expression in initializer [-fpermissive]
tokens.lex:51:20: error: invalid conversion from ‘char**’ to ‘int’ [-fpermissive]
tokens.lex:52:3: error: expected unqualified-id before ‘{’ token

这里有什么不对?我在C / C ++方面不是很强,所以我不知道这里发生了什么。请问你能帮帮我吗?谢谢!

2 个答案:

答案 0 :(得分:1)

编写main函数的正确方法是:

int main(int argc, char** argv)
{
  if (argc > 1)
    yyin = fopen(argv[1], "r");
  else
    yyin = stdin;
  return yylex();
}
  1. 参数的类型应放在参数名称
  2. 之前
  3. argv数组的元素[0]是程序名称本身。真正的论点始于[1]。

答案 1 :(得分:0)

你的main()参数声明不正确&#39; C&#39;另一个答案中提到的语法,但无论如何这都是错误的。你的词法分析者必须返回标记,而不仅仅是打印它们。 lex / flex的main()函数必须调用yylex(),直到它返回零或-1或EOS指示为止。这就是lex库中的那个。