mirror of
https://github.com/logos-storage/zk-benchmarks.git
synced 2026-01-06 15:53:08 +00:00
8 lines
207 B
Bash
Executable File
8 lines
207 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -z ${ZKBENCH_NTHREADS} ]; then
|
|
ZKBENCH_NTHREADS="default" # https://doc.rust-lang.org/cargo/reference/config.html#buildjobs
|
|
fi
|
|
|
|
CARGO_BUILD_JOBS=$ZKBENCH_NTHREADS cargo build --release
|