> **Documentation index**
>
> Fetch the complete documentation index at: https://circ-lang.org/llms.txt
> Use this file to discover all available pages before exploring further.


# Download

> Pre-built `circ-compile` binaries for Linux, macOS, and Windows. Alpha software — expect breaking changes between builds.

Latest build: `0.0.2`.

## Alpha warning

`circ-compile` is under active development. Expect rough edges, cryptic error messages, and breaking changes between builds. Don't use it for anything you care about preserving. Reports of what doesn't work are welcome — but for now, assume nothing here is stable.

## Pre-built binaries

Prefer to build from source? See [getting started](https://circ-lang.org/reference/getting-started.md).

| OS | Architecture | File | Min OS |
| --- | --- | --- | --- |
| Linux | x86_64 | [`circ-compile-0.0.2-linux-x86_64.tar.gz`](https://circ-lang.org/downloads/circ-compile-0.0.2-linux-x86_64.tar.gz) | Kernel 3.2+ |
| macOS | aarch64 (Apple Silicon) | [`circ-compile-0.0.2-macos-aarch64.tar.gz`](https://circ-lang.org/downloads/circ-compile-0.0.2-macos-aarch64.tar.gz) | 11 (Big Sur) |
| Windows | x86_64 | [`circ-compile-0.0.2-windows-x86_64.zip`](https://circ-lang.org/downloads/circ-compile-0.0.2-windows-x86_64.zip) | 10 |

## Build from source

For Intel Macs, ARM Linux, ARM Windows, or any platform not listed above, build directly with [Zig 0.15.x](https://ziglang.org/):

```sh
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](https://circ-lang.org/reference/getting-started.md).
