Download
| Platform |
File |
Notes |
| Linux x86-64 |
oxide-sloc-linux-x86_64 |
Static binary (musl) — works on any x86-64 Linux |
| Linux arm64 |
oxide-sloc-linux-arm64 |
Requires glibc ≥ 2.17 (Raspberry Pi 4, AWS Graviton, Ampere, etc.) |
| Windows x86-64 |
oxide-sloc-windows-x86_64.exe |
Windows 10/11 |
| macOS x86-64 |
oxide-sloc-macos-x86_64 |
Intel Mac |
| macOS Apple Silicon |
oxide-sloc-macos-arm64 |
M1/M2/M3/M4 Mac |
| Vendor archive |
vendor.tar.gz.aa + .ab + .ac + vendor.checksums.sha256 |
Rust dependency sources (split gzip parts) for air-gapped builds |
Checksums for all release assets are in SHA256SUMS.txt.
GPG detached signatures (.sig), Sigstore cosign bundles (.bundle), and SLSA provenance attestations (.sigstore.json) are included for each binary.
The GPG public key used for signing is oxide-sloc-signing-key.asc.
Quick install
# Linux x86-64
curl -Lo oxide-sloc https://github.com/oxide-sloc/oxide-sloc/releases/download/v1.6.18/oxide-sloc-linux-x86_64
chmod +x oxide-sloc && sudo mv oxide-sloc /usr/local/bin/
# Linux arm64
curl -Lo oxide-sloc https://github.com/oxide-sloc/oxide-sloc/releases/download/v1.6.18/oxide-sloc-linux-arm64
chmod +x oxide-sloc && sudo mv oxide-sloc /usr/local/bin/
# macOS (Apple Silicon)
curl -Lo oxide-sloc https://github.com/oxide-sloc/oxide-sloc/releases/download/v1.6.18/oxide-sloc-macos-arm64
chmod +x oxide-sloc && sudo mv oxide-sloc /usr/local/bin/
# macOS (Intel)
curl -Lo oxide-sloc https://github.com/oxide-sloc/oxide-sloc/releases/download/v1.6.18/oxide-sloc-macos-x86_64
chmod +x oxide-sloc && sudo mv oxide-sloc /usr/local/bin/
# Windows — rename and add to PATH
ren oxide-sloc-windows-x86_64.exe oxide-sloc.exe
# Verify checksum (Linux / macOS)
sha256sum --check SHA256SUMS.txt
# Verify GPG signature (Linux / macOS)
gpg --import oxide-sloc-signing-key.asc
gpg --verify oxide-sloc-linux-x86_64.sig oxide-sloc-linux-x86_64
# Verify cosign bundle (keyless — requires cosign installed).
# The identity flags pin the signature to this repo's release workflow.
cosign verify-blob \
--bundle oxide-sloc-linux-x86_64.bundle \
--certificate-identity-regexp '^https://github.com/oxide-sloc/oxide-sloc/\.github/workflows/release\.yml@refs/tags/v' \
--certificate-oidc-issuer https://token.actions.githubusercontent.com \
oxide-sloc-linux-x86_64
Air-gapped build
# Download source + vendor archive from this release, then on the air-gapped machine:
bash scripts/internal/airgap-build.sh
Or build from source (requires Rust 1.98+)
cargo install --git https://github.com/oxide-sloc/oxide-sloc oxide-sloc
What's Changed
• chore:update dist Windows binaries (v1.6.17) by @oxide-sloc-toolchain-bot[bot] in https://github.com/oxide-sloc/oxide-sloc/pull/119
• chore:update dist Linux binary (v1.6.17) by @oxide-sloc-toolchain-bot[bot] in https://github.com/oxide-sloc/oxide-sloc/pull/120
Full Changelog:https://github.com/oxide-sloc/oxide-sloc/compare/v1.6.17...v1.6.18