Skip to content

Commit 1365771

Browse files
committed
Document that the macabi sanitizers are shared with darwin
Do not rename and resign the darwin sanitizers a second time for macabi.
1 parent dcbe9f7 commit 1365771

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/bootstrap/compile.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -570,13 +570,14 @@ fn copy_sanitizers(
570570
let dst = libdir.join(&runtime.name);
571571
builder.copy(&runtime.path, &dst);
572572

573+
// The `aarch64-apple-ios-macabi` and `x86_64-apple-ios-macabi` are also supported for
574+
// sanitizers, but they share a sanitizer runtime with `${arch}-apple-darwin`, so we do
575+
// not list them here to rename and sign the runtime library.
573576
if target == "x86_64-apple-darwin"
574577
|| target == "aarch64-apple-darwin"
575578
|| target == "aarch64-apple-ios"
576579
|| target == "aarch64-apple-ios-sim"
577-
|| target == "aarch64-apple-ios-catalyst"
578580
|| target == "x86_64-apple-ios"
579-
|| target == "x86_64-apple-ios-catalyst"
580581
{
581582
// Update the library’s install name to reflect that it has been renamed.
582583
apple_darwin_update_library_name(&dst, &format!("@rpath/{}", &runtime.name));

0 commit comments

Comments
 (0)