diff options
author | Alex Crichton <alex@alexcrichton.com> | 2015-09-17 15:18:18 -0700 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2015-09-17 15:19:58 -0700 |
commit | 684cfa46918d0c1a2591e7008e826d60d62c59b8 (patch) | |
tree | 7b40b595a4e0f9b646bbc7323dc32f29eeeeac0b /ci/run.sh | |
parent | 1ff961010ba16ccbdd74f88cf23fb11e413f6910 (diff) | |
download | rust-libc-684cfa46918d0c1a2591e7008e826d60d62c59b8.tar.gz |
Add aarch64 support/CI
Diffstat (limited to 'ci/run.sh')
-rw-r--r-- | ci/run.sh | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -16,6 +16,8 @@ elif [ "$TARGET" = "mips-unknown-linux-gnu" ]; then # FIXME: this segfaults on travis, passes locally? #qemu-mips -L /usr/mips-linux-gnu libc-test/target/$TARGET/debug/all-* echo skip +elif [ "$TARGET" = "aarch64-unknown-linux-gnu" ]; then + qemu-aarch64 -L /usr/aarch64-linux-gnu/ libc-test/target/$TARGET/debug/libc-test else cargo run --manifest-path libc-test/Cargo.toml --target $TARGET fi |