Find solana-fullnode-cuda

This commit is contained in:
Michael Vines 2018-12-13 10:39:54 -08:00
parent 091b21fae7
commit accabca618
2 changed files with 11 additions and 1 deletions

View File

@ -49,7 +49,10 @@ echo --- Creating tarball
./fetch-perf-libs.sh
# shellcheck source=/dev/null
source ./target/perf-libs/env.sh
cargo install --path . --features=cuda --root solana-release-cuda
(
cd fullnode
cargo install --path . --features=cuda --root ../solana-release-cuda
)
cp solana-release-cuda/bin/solana-fullnode solana-release/bin/solana-fullnode-cuda
tar jvcf solana-release.tar.bz2 solana-release/

View File

@ -17,6 +17,13 @@ solana-drone = { path = "../drone", version = "0.11.0" }
solana-metrics = { path = "../metrics", version = "0.11.0" }
solana-sdk = { path = "../sdk", version = "0.11.0" }
[features]
chacha = []
cuda = []
erasure = []
ipv6 = []
unstable = []
[[bin]]
name = "solana-fullnode"
path = "src/fullnode.rs"