bison 和 flex 的分段错误

发布于 2024-09-11 11:03:55 字数 605 浏览 6 评论 0原文

我正在尝试使用 oreilly 书来学习 lex 和 yacc 。我尝试了书中的以下示例,但它给出了分段错误。

%{
 /**
  * A lexer for the basic grammar to use for recognizing English sentences.
  */

  #include <stdio.h>
  extern FILE *yyin;
%}

%token NOUN PRONOUN VERB ADVERB ADJECTIVE PREPOSITION CONJUNCTION

%%
sentence: subject VERB object{ printf("Sentence is valid.\n");}
 ;

subject: NOUN
 | PRONOUN
 ;
object:  NOUN
 ;
%%


main()
{
 while(!feof(yyin)) {
  yyparse();
 }

}
yyerror(char *s)
{
 fprintf(stderr, "%s\n", s);
}

我正在使用 Flex 和 Bison。 我在 while 循环的主函数中遇到分段错误。它根本没有进入循环。

有什么想法吗? 谢谢, 罗伯特

I was trying learn lex and yacc using the oreilly book. I tried following example from book, but it gives segmentation fault.

%{
 /**
  * A lexer for the basic grammar to use for recognizing English sentences.
  */

  #include <stdio.h>
  extern FILE *yyin;
%}

%token NOUN PRONOUN VERB ADVERB ADJECTIVE PREPOSITION CONJUNCTION

%%
sentence: subject VERB object{ printf("Sentence is valid.\n");}
 ;

subject: NOUN
 | PRONOUN
 ;
object:  NOUN
 ;
%%


main()
{
 while(!feof(yyin)) {
  yyparse();
 }

}
yyerror(char *s)
{
 fprintf(stderr, "%s\n", s);
}

i'm using flex and bison.
I'm getting segmentation fault in main function, in the while loop. It is not entering at all to the loop.

Any thoughts?
Thanks,
Robert

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

玻璃人 2024-09-18 11:03:55

yyin 实际上在某个地方被赋予了有意义的值吗?也许尝试分配它:

yyin = stdin;

就在主循环之前。

编辑:也许尝试不将其定义为“外部”,除非它实际上是在其他地方定义的。

Is yyin actually given a meaningful value somewhere? Perhaps try assigning it:

yyin = stdin;

Just before the main loop.

EDIT: and maybe try not defining it "extern" unless it's actually defined somewhere else.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文