After creating the .l
file, placing the necessary flex commands on the Visual Studio prompt always gives this error. I have already tried to put the mentioned library in the directory but the problem remains.
Error:
Microsoft (R) C/C++ Optimizing Compiler Versão 19.11.25547 para x86 Copyright (C) Microsoft Corporation. Todos os direitos reservados. lex.yy.c lex.yy.c(397): warning C4005: 'yywrap': redefinição de macro lex.yy.c(73): note: consulte a definição anterior de 'yywrap' calcula.l(5): fatal error C1083: Não é possível abrir arquivo incluir: 'unistd.h': No such file or directory
File code .l
:
%option main %x COMENT %% "//" BEGIN( COMENT ); .|\n|\r <COMENT>. ECHO; <COMENT>\n|\r BEGIN( INITIAL ); %%