This is a c++ 17/20 implementation of book Modern Compiler Implementation in C. Still in working, any question or suggestion are welcome :)
Lexer ✅ | Parser ✅ | AST ☑️ | Semantic ☑️ | IR ☑️ | Back End ☑️
mkdir build
cd build && cmake ..
cmake --build .
ctest # run unit test and regression test.
Lexer use flex to implement the token scanner. Parser use Bison to implement the context free grammer.