BREAKING CHANGE: Removed binaries solana-localnet and solana-bpf-sdk-install. Please install the Solana CLI tools to download the BPF SDK and to install the solana-test-validator binary intead.
8 lines
112 B
Bash
Executable File
8 lines
112 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ex
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
cargo build-bpf
|
|
cp ./target/deploy/solana_bpf_rust_noop.so .
|