https://github.com/tuki0918/c-compiler-primer
learning / 低レイヤを知りたい人のためのCコンパイラ作成入門
https://github.com/tuki0918/c-compiler-primer
Last synced: 3 months ago
JSON representation
learning / 低レイヤを知りたい人のためのCコンパイラ作成入門
- Host: GitHub
- URL: https://github.com/tuki0918/c-compiler-primer
- Owner: tuki0918
- Created: 2020-05-02T13:19:12.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-06T06:30:53.000Z (about 5 years ago)
- Last Synced: 2025-03-10T16:49:13.299Z (3 months ago)
- Language: C
- Homepage: https://www.sigbus.info/compilerbook
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# c-compiler-primer
learning / 低レイヤを知りたい人のためのCコンパイラ作成入門### Preparation
```
$ docker build -t compilerbook ./environment
$ docker run --rm -it compilerbook which cc
/usr/bin/cc
```