From 6d66adc7f5e7837af2871471d3381b74e273a3a8 Mon Sep 17 00:00:00 2001 From: Tim Crawford Date: Wed, 20 May 2020 13:34:10 -0600 Subject: [PATCH] Pin cargo-xbuild to 0.5.29 The new handling of LTO options in 0.5.30+ breaks building on older toolchains. --- scripts/deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deps.sh b/scripts/deps.sh index cea29db..6216cb0 100755 --- a/scripts/deps.sh +++ b/scripts/deps.sh @@ -51,7 +51,7 @@ rustup component add --toolchain "$(cat rust-toolchain)" rust-src if ! which cargo-xbuild > /dev/null then msg "Installing cargo-xbuild" - cargo +nightly install cargo-xbuild + cargo +nightly install cargo-xbuild --version=0.5.29 fi msg "\x1B[32mSuccessfully installed dependencies"