mirror of
https://github.com/logos-blockchain/logos-blockchain-rust-rapidsnark.git
synced 2026-06-07 11:49:32 +00:00
14 lines
180 B
Bash
14 lines
180 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
BUILD_DIR=$(mktemp -d)
|
||
|
|
|
||
|
|
git clone https://github.com/chancehudson/rapidsnark.git $BUILD_DIR
|
||
|
|
cd $BUILD_DIR
|
||
|
|
|
||
|
|
git submodule init
|
||
|
|
git submodule update
|
||
|
|
|
||
|
|
build_gmp.sh
|