Skip to content

Commit

Permalink
Make the x86 builds static too
Browse files Browse the repository at this point in the history
  • Loading branch information
JackNewman12 committed Jun 17, 2019
1 parent 516923d commit 45f1388
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions CompileBinaries.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
echo "x64 build"
cargo build --release
mv ./target/release/net_hex ./net_hex_x64
rustup target add x86_64-unknown-linux-musl
cargo build --release --target x86_64-unknown-linux-musl
mv ./target/x86_64-unknown-linux-musl/release/net_hex ./net_hex_x64
strip ./net_hex_x64

echo "ARM build"
Expand Down

0 comments on commit 45f1388

Please sign in to comment.