flex野牛窗户介绍

问题描述 投票:0回答:1

由于我是词法分析器和解析器的新手,所以我正在尝试阅读和理解其他代码。

这是我要使用的代码:https://gist.github.com/justjkk/436828

但是它给了我错误。我该如何解决?

E:\flex_bison_test>gcc lex.yy.c y.tab.c -o json.exe
json.l: In function 'yylex':
json.l:34:11: warning: assignment to 'YYSTYPE' {aka 'int'} from 'char *' makes integer from pointer without a cast [-Wint-conversion]
     yylval=strclone(yytext);
           ^
json.l:38:11: warning: assignment to 'YYSTYPE' {aka 'int'} from 'char *' makes integer from pointer without a cast [-Wint-conversion]
     yylval=strclone(yytext);
           ^
json.l: In function 'strclone':
json.l:82:15: warning: implicit declaration of function 'strlen' [-Wimplicit-function-declaration]
     int len = strlen(str);
               ^~~~~~
json.l:82:15: warning: incompatible implicit declaration of built-in function 'strlen'
json.l:82:15: note: include '<string.h>' or provide a declaration of 'strlen'
json.l:79:1:
+#include <string.h>
 %%
json.l:82:15:
     int len = strlen(str);
               ^~~~~~
json.l:84:5: warning: implicit declaration of function 'strcpy' [-Wimplicit-function-declaration]
     strcpy(clone,str);
     ^~~~~~
json.l:84:5: warning: incompatible implicit declaration of built-in function 'strcpy'
json.l:84:5: note: include '<string.h>' or provide a declaration of 'strcpy'
y.tab.c: In function 'yyparse':
y.tab.c:627:16: warning: implicit declaration of function 'yylex' [-Wimplicit-function-declaration]
 # define YYLEX yylex ()
                ^~~~~
y.tab.c:1272:16: note: in expansion of macro 'YYLEX'
       yychar = YYLEX;
                ^~~~~
y.tab.c:1540:7: warning: implicit declaration of function 'yyerror'; did you mean 'yyerrok'? [-Wimplicit-function-declaration]
       yyerror (YY_("syntax error"));
       ^~~~~~~
       yyerrok
json.y: At top level:
json.y:80:6: warning: conflicting types for 'yyerror'
 void yyerror (char const *s) {
      ^~~~~~~
y.tab.c:1540:7: note: previous implicit declaration of 'yyerror' was here
       yyerror (YY_("syntax error"));
       ^~~~~~~

E:\flex_bison_test>

或者这些应该保持原样。

所有命令,我已经给出了:

flex json.l
bison -dy json.y
gcc lex.yy.c y.tab.c -o json.exe
c parsing bison flex-lexer lexer
1个回答
0
投票

简单地:

#include <string.h>

json.l顶部的flex定义部分中,应为您修复它。

您指向的存储库中还有一个Makefile。也许您应该使用它。您似乎无法正确生成解析器文件。请参阅下面的评论。

关于其余警告:

warning: implicit declaration of function 'yyerror';
warning: implicit declaration of function 'yylex';

这些可以通过添加yylex()的声明轻松解决,并且yyerror应该出现在bison顶部的json.y序言部分:

%{
    int yylex();
    void yyerror(const char *s);
%}

至于这些:

json.l:34:11: warning: assignment makes integer from pointer without a cast
 yylval=strclone(yytext);
json.l:38:11: warning: assignment makes integer from pointer without a cast
 yylval=strclone(yytext);

它们有些微妙。我建议看一下here,以了解如何使用yylval将字符串从lex的令牌正确传递到解析器的操作中。现在的问题是,yylval只是裸露的int,但最终却为charNUMBER令牌分配了STRING指针。

© www.soinside.com 2019 - 2024. All rights reserved.