Skip to content

Commit 206a662

Browse files
committed
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.
1 parent dcbe9f7 commit 206a662

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bootstrap/compile.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -574,9 +574,9 @@ fn copy_sanitizers(
574574
|| target == "aarch64-apple-darwin"
575575
|| target == "aarch64-apple-ios"
576576
|| target == "aarch64-apple-ios-sim"
577-
|| target == "aarch64-apple-ios-catalyst"
577+
|| target == "aarch64-apple-ios-macabi"
578578
|| target == "x86_64-apple-ios"
579-
|| target == "x86_64-apple-ios-catalyst"
579+
|| target == "x86_64-apple-ios-macabi"
580580
{
581581
// Update the library’s install name to reflect that it has been renamed.
582582
apple_darwin_update_library_name(&dst, &format!("@rpath/{}", &runtime.name));

0 commit comments

Comments
 (0)