Download

Latest build: 0.0.2

Quick install

One command fetches the latest build for your platform and puts circ-compile on your PATH.

macOS and Linux

curl -fsSL https://circ-lang.org/install.sh | sh

Windows (PowerShell)

irm https://circ-lang.org/install.ps1 | iex

Installs to ~/.local/bin (macOS and Linux) or %LOCALAPPDATA%\circ\bin (Windows). Set CIRC_INSTALL_DIR to change the location, or CIRC_VERSION to pin a version.

Or grab a pre-built binary for your platform by hand. Prefer to build from source? See the getting-started guide.

OS Architecture File name Min OS version Download
Linux x86_64 circ-compile-v0.0.2-linux-x86_64 Kernel 3.2+ ↓ Download
macOS aarch64 (Apple Silicon) circ-compile-v0.0.2-macos-aarch64 11 (Big Sur) ↓ Download
Windows x86_64 circ-compile-v0.0.2-windows-x86_64.exe 10 ↓ Download

Build from source

For Intel Macs, ARM Linux, ARM Windows, or any platform not listed above, build directly with Zig 0.15.x:

git clone https://github.com/jeffersonmourak/circ-compiler
cd circ-compiler
zig build circ-compile -Doptimize=ReleaseFast
./zig-out/bin/circ-compile --help

The full walkthrough — including writing your first .circ file and driving the compiled WASM from Node — lives in Getting Started.