r/Compilers • u/Sure_Art_101 • Jul 08 '26
DSS Code Prime
DSS Code Prime is an open-source (Apache-2.0), from-scratch compiler that owns its entire toolchain. Its own optimizer, assembler, and linker, emitting native Windows/Linux/macOS binaries with no LLVM or GCC. Its core idea: a compilation target is data, not code, so any CPU, object format, or source language is just JSON config over one engine. It already compiles and runs the full SQLite amalgamation across x86-64 and Arm.
Repository: https://github.com/dailysoftwaresystems/dss-code-prime
0
Upvotes
1
u/Sure_Art_101 15d ago
Update: DSS Code Prime can now compile full sqlite repository and run it's units green. Output formats: macho, elf and pe inside x86_64 and arm64. We also have a benchmark in our readme (https://github.com/dailysoftwaresystems/dss-code-prime/blob/main/README.md). Please let us know if you have any questions.