https://github.com/blevic/simple-c-compiler
My C compiler, written in C (and Python)
https://github.com/blevic/simple-c-compiler
c compiler lexer python
Last synced: about 2 months ago
JSON representation
My C compiler, written in C (and Python)
- Host: GitHub
- URL: https://github.com/blevic/simple-c-compiler
- Owner: blevic
- Created: 2022-04-03T02:11:09.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-20T01:47:16.000Z (about 4 years ago)
- Last Synced: 2025-05-30T20:45:41.372Z (about 1 year ago)
- Topics: c, compiler, lexer, python
- Language: C
- Homepage:
- Size: 54.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# simple-c-compiler
My C compiler, written in... C (ok, also Python)
To execute lexer:
```
cd build
cmake ..
make
./lexer
```
Based on [Nora Sandler](https://github.com/nlsandler)'s write-your-C-compiler series.