nalgebra/ci/build.sh

8 lines
241 B
Bash
Raw Normal View History

2018-05-25 00:29:52 +08:00
#! /bin/bash
if [ -z NO_STD ]; then
cargo build --verbose --features "${CARGO_FEATURES}";
else
cargo install xargo;
xargo build --verbose --no-default-features --target=x86_64-unknown-linux-gnu --features "${CARGO_FEATURES}";
fi