An open API service indexing awesome lists of open source software.

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)

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}