A C++ implementation inspired by chibicc.
This is an educational C compiler project that demonstrates compiler construction principles using modern C++. The compiler translates C expressions into x86-64 assembly code.
# Build
mkdir -p build && cd build
cmake ..
make
# Run
./bin/chibcpp "1+2*3"
# Test
./test_compiler.shThis section documents the incremental development process, explaining what each commit accomplishes.