vexriscv-rust/ci/install.sh

10 lines
131 B
Bash
Raw Normal View History

2018-08-11 23:58:32 +08:00
set -euxo pipefail
main() {
if [ $TARGET != x86_64-unknown-linux-gnu ]; then
rustup target add $TARGET
fi
}
main