Releases: eclipse-enclave/enclave
Releases · eclipse-enclave/enclave
Release list
Rolling Release
Rolling release from main
Commit: 6596efd7
Date: 2026-09-15
| File | Platform | Notes |
|---|---|---|
enclave_*_amd64.deb |
Ubuntu 24.04 (x86-64) | Includes all assets |
enclave-*.x86_64.rpm |
Fedora Linux (x86-64) | Includes all assets |
enclave-linux-amd64 |
Linux (x86-64) | Self-contained binary with runtime assets |
enclave-linux-arm64 |
Linux (arm64) | Self-contained binary with runtime assets |
enclave-darwin-arm64 |
macOS (Apple Silicon) | Self-contained binary, unsigned |
enclave-darwin-amd64 |
macOS (Intel) | Self-contained binary, unsigned |
enclave-windows-amd64.zip |
Windows (x86-64) | WSL2 launcher only; also install a Linux artifact inside the distribution |
enclave-windows-arm64.zip |
Windows (arm64) | WSL2 launcher only; also install a Linux artifact inside the distribution |
enclave.json |
Windows | Scoop manifest for the archives above |
# Ubuntu 24.04 (resolves dependencies automatically)
sudo apt install ./enclave_*_amd64.deb
# Fedora Linux (resolves dependencies automatically)
sudo dnf install ./enclave-*.x86_64.rpm
# Other Linux distributions (use enclave-linux-arm64 on arm64 hosts)
sha256sum --check --ignore-missing checksums.txt
sudo install enclave-linux-amd64 /usr/local/bin/enclave
# macOS (replace arm64 with amd64 on Intel)
shasum -a 256 --check --ignore-missing checksums.txt
xattr -d com.apple.quarantine ./enclave-darwin-arm64 2>/dev/null || true
sudo install -d /usr/local/bin
sudo install enclave-darwin-arm64 /usr/local/bin/enclave# Windows: install the launcher, then enclave itself inside WSL2
scoop install https://github.com/eclipse-enclave/enclave/releases/download/rolling/enclave.jsonThe macOS binaries are unsigned and not notarized, so Gatekeeper quarantines browser downloads and install propagates the attribute; curl or gh release download avoids it entirely.
enclave.exe is a launcher, not a native port: it forwards every argument to the Linux enclave binary inside a WSL2 distribution, which you install separately using the Linux artifacts above. Run it from a directory inside the distribution. See docs/windows.md.