Skip to content

Commit

Permalink
Fix typo for compiler tests, use *-ios-macabi instead of *-ios-catalyst
Browse files Browse the repository at this point in the history
Catalyst is what the Chromium GN system names this target, but the Rust
triple is macabi.
  • Loading branch information
danakj committed Sep 11, 2023
1 parent dcbe9f7 commit 206a662
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bootstrap/compile.rs
Expand Up @@ -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));
Expand Down

0 comments on commit 206a662

Please sign in to comment.