Skip to content

Build From Source

SOURCE · local build · verifiable

Build From Source ⟨ trusted locally ⟩

Prebuilt tarballs are not available yet. Build the CLI and kernel locally from source so you can inspect the code and trust your own toolchain. Signed release artifacts will be listed here after publication.

01

Build kernel locally

Use make for the default CUDA GPU kernel or make cpu for CPU-only mining.

02

Build CLI locally

Compile the Rust orchestrator with cargo build --release --locked.

build.sh
# Clone repository
git clone https://github.com/anvil256xyz/anvil256.git
cd anvil256

# Build kernel: default GPU or CPU fallback
cd kernel
make              # NVIDIA CUDA default
# make cpu        # CPU-only fallback

# Build and run CLI
cd ../cli
cargo build --release --locked
cp .env.example .env
# set BASE_RPC_URL, PRIVATE_KEY, ANVIL256_ADDRESS
./target/release/anvil256-cli

No releases yet

Build from source now, or watch the GitHub Releases page for signed release artifacts after publication.