Mam prosty „język”, w którym używam Flex (Lexical Analyzer), wygląda to tak:
/* 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);
}
Uruchamiam a flex count.l
, wszystko idzie dobrze bez błędów i ostrzeżeń, to jak próbuję zrobić a cc lex.yy.c
wyskakuje mi ten błąd:
ubuntu @ eeepc: ~ / Desktop $ cc lex.yy.c
/tmp/ccwwkhvq.o: W funkcjiyylex': lex.yy.c:(.text+0x402): undefined reference to
yywrap '
/tmp/ccwwkhvq.o: W funkcjiinput': lex.yy.c:(.text+0xe25): undefined reference to
yywrap'
collect2: ld zwrócił 1 status wyjścia
Co jest nie tak?