我正在编译几个lex和yacc程序。在大学我们使用Fedora Core 4.我在家中的虚拟机上使用相同的操作系统,但我无法编译程序。以下是lex和yacc代码无法编译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
请帮我解决这个错误。在此先感谢