Skip to content
/ confy Public

Comfortable and Configurable buildsystem for C, C++, Zig and Nim

License

Notifications You must be signed in to change notification settings

heysokam/confy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Confy

confy: Comfortable and Configurable buildsystem

Confy is a buildsystem for compiling code with ZigCC.
Inspired by SCons, without the issues of a typeless language.
You can expect:

  • Ergonomic, readable and minimal/simple syntax.
  • Behaves like a library. Build your own binary that runs the compilation commands.
  • Imperative, not declarative. You own the control flow.
  • Sane project configuration defaults.
  • Builds with zig cc. Auto-downloads the latest version for the host.

Preview

Minimal build file:

import confy
const hello = Program.new("hello.c")
hello.build()
hello.run()

How to Use

TODO:
Full how-to guide @doc/howto
See the examples folder in the meantime

Design Decisions

Summary of: doc/design.md

Please read the @how to doc before reading this section:

Imperative, not Declarative

When most people think of a build tool, they think of declarativeness.
This is not what Confy is.

Confy is completely imperative.
What you tell Confy to do, it will do immediately.

The core the concept behind Confy is that you fully own your buildsystem.
Its your project, and only you can know what your project/tooling needs,
and in which exact order.

build.nim is NOT a buildscript

Confy is a buildsystem library.
The premade caller provides you with an easy way to run it as if it was a binary,
but confy is, by design, not a binary app.

Your build file (not confy) will be a full systems binary application,
that you compile with nim's compiler (or automated with confy's premade caller) to build your project.

Because of this:

  • There is no weird make-specific or shell-only language restrictions, like make/cmake.
  • There is no interpreted-language restrictions either, like in python.
  • There is no "can only do what the VM can do" problems either, like nimscript or lua.
  • Your builder will be a full systems binary, that will be able to do literally anything you want.

Why ZigCC

ZigCC comes with all of these features builtin, out of the box. No extra setup:

  • Automatic Caching
  • Cross-platform Cross-compilation (from any system to any system, not just some to some)
  • Auto-dependency resolution
  • Preconfigured Sanitization
  • Sane and Modern optimization defaults
  • Pre-packed libc

... and all of that fits in a self-contained 50mb download!

Compare that to setting up gcc/mingw/msys/msvc/clang/osxcross ... etc, etc, etc
I say there is a clear winner here.