Tengo un "lenguaje" simple que estoy usando Flex (Lexical Analyzer), es así:
/* 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);
}
Ejecuté a flex count.l
, todo va bien sin errores ni advertencias, luego, cuando intento hacer una cc lex.yy.c
, obtuve estos errores:
ubuntu @ eeepc: ~ / Desktop $ cc lex.yy.c
/tmp/ccwwkhvq.o: En funciónyylex': lex.yy.c:(.text+0x402): undefined reference to
yywrap '
/tmp/ccwwkhvq.o: En funcióninput': lex.yy.c:(.text+0xe25): undefined reference to
yywrap'
collect2: ld devolvió 1 estado de salida
¿Qué está mal?