warning: unfinished and buggy... also it doesn't compile on Linux or OSX currently, i'll get around to it
The plan is a modern C11 compiler which can mostly work with Clang, GCC, and MSVC while also introducing some new ideas.
- To improve the compile times on debug builds without sacrificing features like I would with TCC.
- To test out my upcoming (and currently private) compiler backend.
- To add some extensions to improve the workflow of C programmers.
- Because I can.
Mac & Linux aren't ready yet but i'll be moving forward to those platforms in the upcoming months
You will need Tup and if you're on windows also MSVC (i use link.exe for now... sorry, i'll remove the linker dependency soon)
git clone https://github.com/RealNeGate/Cuik
cd Cuik
tup init
tup
mostly aight, thanks for asking.
One of my favorite new features are the live compiler (essentially an offline Godbolt but within a terminal) and the out of order declarations.
I'll be starting with x64 but I plan on having Aarch64 support soon enough, it's mostly a matter of user-demand what other platforms I add though I probably won't be supporting anything with a segmented address space because I don't want to implement it.
Ideally the essentials like Windows, Linux and MacOS but currently MacOS isn't setup and Linux has basic support (no live compiler)
It will eventually have a smart but non-aggressive optimizer but that's still a work in progress
I'll be supporting all the normal extensions such as:
- pragma once
- builtin bitmath (popcount, ffs, clz, ctz, etc)
- __builtin_trap, __builtin_expect
- x86 SIMD intrinsics
- typeof
- case ranges
- computed goto
And some possibly novel extensions such as:
- Out of order functions
- Tagged unions
It can currently compile programs using the subset of C it currently supports but it's still missing some essential details before it compiles any basic C program such as:
- More tests
- Bug fixes
- Self hosting
- Thread local
- Atomics (halfway there)
- MSVC extensions
- GNU extensions
- Proper Mac/Linux support
In case you care to look around here's what the folders mean:
# libCuik itself
lib/
include/
# and it's dependencies (TB binaries go here)
deps/
# these are the programs that actually call into libCuik
drivers/
# not ciabatta but the freestanding includes like stddef.h along with some helpers
crt/
# random crap
logo/
tests/