How To Use Flex on Windows

c, flex-lexer, lex, windows

Solution

It's possible to set up a Visual Studio project that uses `flex` as a custom build step in order to automatically invoke `flex` and then compile the generated file. I taught a compilers course last summer and we have instructions on how to get `flex` and a sample project file available on the archived course website. You should look under the announcement labeled "Visual Studio Starter Files for PP1."

Hope this helps!

Problem

I apologize if this is a dumb question, but I have 0 experience with this tool and wanted to know if I'm going about using it properly. I've downloaded flex which, upon compiling my lex file, produces a C file which then needs to be compiled separately. Is this the best way to do it?

Original source