From 985f2fdfa11edce8b577d565b4c0be1916afc5d3 Mon Sep 17 00:00:00 2001 From: Martin Kim Dung-Pham Date: Fri, 26 Feb 2021 20:34:59 +0100 Subject: [PATCH] Use nightly Rust instead of `myrust` for building for Mac Catalyst ARM64 `myrust` was probably the Rust that contained https://github.com/rust-lang/rust/pull/77484 --- make_fat.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make_fat.sh b/make_fat.sh index daaeaca..f70280b 100755 --- a/make_fat.sh +++ b/make_fat.sh @@ -22,7 +22,7 @@ cargo +nightly build -Z build-std --target x86_64-apple-ios-macabi --release > / # ARM64 Catalyst echo "Building for Mac Catalyst ARM64..." -cargo +myrust build -Z build-std --target aarch64-apple-ios-macabi --release > /dev/null 2>&1 +cargo +nightly build -Z build-std --target aarch64-apple-ios-macabi --release > /dev/null 2>&1 # iOS echo "Building for ARM iOS..."