未定义对yywrap的引用


81

我有一个使用Flex(Lexical Analyzer)的简单“语言”,就像这样:

/* Just like UNIX wc */
%{
int chars = 0;
int words = 0;
int lines = 0;
%}

%%
[a-zA-Z]+ { words++; chars += strlen(yytext); }
\n        { chars++; lines++; }
.         { chars++; }
%%

int main()
{
    yylex();
    printf("%8d%8d%8d\n", lines, words, chars);
}

我运行flex count.l,一切正常,没有错误或警告,然后当我尝试执行时,cc lex.yy.c出现以下错误:

Ubuntu的@ EeePC的:〜/桌面$ CC的lex.yy.c
/tmp/ccwwkhvq.o:在函数yylex': lex.yy.c:(.text+0x402): undefined reference toyywrap '
/tmp/ccwwkhvq.o:在函数input': lex.yy.c:(.text+0xe25): undefined reference toyywrap'
collect2:LD返回1个退出状态

怎么了?

Answers:


126

扫描程序在文件末尾调用此功能,因此您可以将其指向另一个文件并继续扫描其内容。如果不需要,请使用

%option noyywrap

在扫描仪规格中。

尽管禁用yywrap 当然是最好的选择,但也可以通过链接-lfl使用flex提供yywrap()的库中的默认功能fl(即libfl.a)。Posix要求该库可与链接器标志一起使用,-ll并且默认的OS X安装仅提供该名称。


1
究竟在哪里添加'%option noyywrap'?在定义部分还是在命令行上?
yamex5

我将其添加到.l文件的开头并lex接受了!我不确定那是否是最好的地方。也许没关系。
迪帕克

9

我更喜欢定义自己的yywrap()。我正在使用C ++进行编译,但重点很明显。如果有人用多个源文件调用编译器,则将它们存储在列表或数组中,然后在每个文件的末尾调用yywrap(),使您有机会继续使用新文件。

int yywrap() {
   // open next reference or source file and start scanning
   if((yyin = compiler->getNextFile()) != NULL) {
      line = 0; // reset line counter for next source file
      return 0;
   }
   return 1;
}

3

flex并不总是随其开发库一起安装(这很奇怪,因为它是开发工具)。安装库,生活会更好。

在Redhat基本系统上:

yum -y install flex-devel
./configure && make

在基于Debian的系统上

sudo apt-get install libfl-dev


-1
int yywrap(){return(1);}

在程序末尾使用此代码。.简单

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.