diff options
author | Jorge Aparicio <japaricious@gmail.com> | 2016-09-29 21:12:54 -0500 |
---|---|---|
committer | Jorge Aparicio <japaricious@gmail.com> | 2016-09-29 21:12:54 -0500 |
commit | c0fd46fa366428a630993624691e9c2dbfc2a7b2 (patch) | |
tree | 7349310eb5db8d6d0ff380d99acce38ed58d0222 /ci | |
parent | 48dab1af48f55719a3459bf6796f0dbc64cb262c (diff) | |
download | rust-libc-c0fd46fa366428a630993624691e9c2dbfc2a7b2.tar.gz |
handle mips-musl in ci/run.sh
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/run.sh | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -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 ;; |