https://github.com/toyboot4e/cinc
Write a C-like in C (step 14/28)
https://github.com/toyboot4e/cinc
Last synced: 3 months ago
JSON representation
Write a C-like in C (step 14/28)
- Host: GitHub
- URL: https://github.com/toyboot4e/cinc
- Owner: toyboot4e
- Created: 2020-04-19T18:46:36.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-08-06T01:30:03.000Z (almost 4 years ago)
- Last Synced: 2025-10-19T18:03:19.772Z (9 months ago)
- Language: C
- Homepage:
- Size: 82 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
Awesome Lists containing this project
README
= C in C
:compilerbook: https://www.sigbus.info/compilerbook[compilerbook]
:x86_64: https://www.sigbus.info/compilerbook#%E4%BB%98%E9%8C%B21x86-64%E5%91%BD%E4%BB%A4%E3%82%BB%E3%83%83%E3%83%88-%E3%83%81%E3%83%BC%E3%83%88%E3%82%B7%E3%83%BC%E3%83%88[x86-64 operation cheatsheet]
:chibicc: https://github.com/rui314/chibicc[chibicc]
:godbolt: https://godbolt.org/[Compiler Explorer (godbolt)]
`cinc` is a hobby project to follow the {compilerbook}. The goal is to learn basic static typing. Self-hosting compiler is out of my scope.
- link:./devlog.adoc[devlog]
== Setup (macOS)
[source,sh]
----
$ docker build -t compilerbook https://www.sigbus.info/compilerbook/Dockerfile
----
== References
* {compilerbook}
* {x86_64}
* {chibicc}
* {godbolt}