summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJorge Aparicio <japaricious@gmail.com>2016-09-29 21:12:54 -0500
committerJorge Aparicio <japaricious@gmail.com>2016-09-29 21:12:54 -0500
commitc0fd46fa366428a630993624691e9c2dbfc2a7b2 (patch)
tree7349310eb5db8d6d0ff380d99acce38ed58d0222
parent48dab1af48f55719a3459bf6796f0dbc64cb262c (diff)
downloadrust-libc-c0fd46fa366428a630993624691e9c2dbfc2a7b2.tar.gz
handle mips-musl in ci/run.sh
-rwxr-xr-xci/run.sh9
1 files changed, 7 insertions, 2 deletions
diff --git a/ci/run.sh b/ci/run.sh
index a4e7117765..238a5e57bc 100755
--- a/ci/run.sh
+++ b/ci/run.sh
@@ -129,10 +129,15 @@ case "$TARGET" in
qemu-mips -L /usr/mips-linux-gnu $CARGO_TARGET_DIR/$TARGET/debug/libc-test
;;
- mipsel-unknown-linux-musl)
- qemu-mipsel -L /toolchain $CARGO_TARGET_DIR/$TARGET/debug/libc-test
+ mips-unknown-linux-musl)
+ qemu-mips -L /toolchain/staging_dir/toolchain-mips_34kc_gcc-5.3.0_musl-1.1.15 \
+ $CARGO_TARGET_DIR/$TARGET/debug/libc-test
;;
+ mipsel-unknown-linux-musl)
+ qemu-mipsel -L /toolchain $CARGO_TARGET_DIR/$TARGET/debug/libc-test
+ ;;
+
powerpc-unknown-linux-gnu)
qemu-ppc -L /usr/powerpc-linux-gnu $CARGO_TARGET_DIR/$TARGET/debug/libc-test
;;