无法编译Lex和Yacc程序

时间:2012-04-11 17:17:03

标签: gcc yacc lex

我正在尝试编译几个lex和yacc程序。在大学里我们使用Fedora Core 4.我在家里的虚拟机上使用相同的操作系统,但我无法编译程序。以下是lex和yacc代码

LEX代码

%{
#include "y.tab.h"
%}
%%
[ \t]+ {;}
\n {return;}
[a-zA-Z][a-zA-Z0-9]* {return ID;}
[0-9]+ {return NUMBER;}
. {return yytext[0];} 
%%

YACC代码

%{
#include<stdio.h>
%}
%token NUMBER ID
%left '+' '-'
%left '*' '/'
%%
input:e'+'e
|e'-'e
|e'*'e
|e'/'e
|'('e')'
;
e:NUMBER
|ID
;
%%
int main()
{
printf("\n\nEnter an expression");
yyparse();
printf("\n\nValid Expression\n\n");
}
void yyerror()
{
printf("\n\nInvalid Expression\n\n");
exit(0);
}

While executing the above code, I get the following linker error

$ lex program_name.l                      //executes without error
$ yacc -d program_name.y                  //executes without error
$ cc lex.yy.c y.tab.c -ll -ly
/usr/bin/ld: cannot find -ly
collect2: ld returned 1 exit status

请帮我解决这个错误。提前致谢

3 个答案:

答案 0 :(得分:2)

This conversion概述了您的问题:您需要安装liby并且编译器需要设置正确的库路径(例如-L / usr / lib)

-ly选项告诉链接器链接liby库,但根据错误,它找不到该库

答案 1 :(得分:1)

这与您的yacc lib有关... 您需要包含-L"/some/path/to/lib-directory"选项

的目录

或者您可能需要安装相应的lib ...

答案 2 :(得分:1)

没有-ly之类的东西。 Lex和flex生成的扫描程序使用运行时支持库。 yacc生成的解析器没有。只需取出-ly,然后重试。