From 56e5d4b2e9b4cc78fbc07e014ce339f7ef4a8cb8 Mon Sep 17 00:00:00 2001 From: Lokathor Date: Tue, 9 Apr 2019 16:27:53 -0600 Subject: [PATCH] Use `cargo xbuild` I forgot for a moment that xargo isn't the same as cargo xbuild --- library/stdarch/.travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/stdarch/.travis.yml b/library/stdarch/.travis.yml index 0a4dc017c870..a29b73318d82 100644 --- a/library/stdarch/.travis.yml +++ b/library/stdarch/.travis.yml @@ -68,7 +68,7 @@ matrix: env: NORUN=1 NOSTD=1 NO_DOCKER=1 install: - rustup component add rust-src - - cargo install xargo + - (test -x $HOME/.cargo/bin/cargo-xbuild || cargo install cargo-xbuild) script: # Obtain the devkitPro tools, using `target/` as a temp directory. This # is required because we need to use their linker. `lld` uses the `BLX` @@ -85,7 +85,7 @@ matrix: - cd .. # Pull the target spec up into the current directory and then build - mv ci/gba.json gba.json - - xargo build --lib --target=gba.json + - cargo xbuild --lib --target gba.json - name: "Documentation" install: true script: ci/dox.sh