From 206a6622d28e17474b764beb44d99c52fd100325 Mon Sep 17 00:00:00 2001 From: danakj Date: Mon, 11 Sep 2023 10:23:15 -0400 Subject: [PATCH] Fix typo for compiler tests, use *-ios-macabi instead of *-ios-catalyst Catalyst is what the Chromium GN system names this target, but the Rust triple is macabi. --- src/bootstrap/compile.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bootstrap/compile.rs b/src/bootstrap/compile.rs index 1ff93dc3b0631..db8aa60aa470c 100644 --- a/src/bootstrap/compile.rs +++ b/src/bootstrap/compile.rs @@ -574,9 +574,9 @@ fn copy_sanitizers( || target == "aarch64-apple-darwin" || target == "aarch64-apple-ios" || target == "aarch64-apple-ios-sim" - || target == "aarch64-apple-ios-catalyst" + || target == "aarch64-apple-ios-macabi" || target == "x86_64-apple-ios" - || target == "x86_64-apple-ios-catalyst" + || target == "x86_64-apple-ios-macabi" { // Update the library’s install name to reflect that it has been renamed. apple_darwin_update_library_name(&dst, &format!("@rpath/{}", &runtime.name));