| ... | @@ -393,11 +393,11 @@ pub fn isLibCLibName(target: *const std.Target, name: []const u8) bool { | ... | @@ -393,11 +393,11 @@ pub fn isLibCLibName(target: *const std.Target, name: []const u8) bool { |
| 393 | return true; | 393 | return true; |
| 394 | if (eqlIgnoreCase(ignore_case, name, "rpcsvc")) | 394 | if (eqlIgnoreCase(ignore_case, name, "rpcsvc")) |
| 395 | return true; | 395 | return true; |
| 396 | } | | |
| 397 | | 396 | |
| 398 | if (target.os.isAtLeast(.macos, .{ .major = 10, .minor = 8, .patch = 0 }) orelse false) { | 397 | if (target.os.tag == .maccatalyst or target.os.tag == .macos) { |
| 399 | if (eqlIgnoreCase(ignore_case, name, "mx")) | 398 | if (eqlIgnoreCase(ignore_case, name, "mx")) |
| 400 | return true; | 399 | return true; |
| | 400 | } |
| 401 | } | 401 | } |
| 402 | | 402 | |
| 403 | if (target.isFreeBSDLibC()) { | 403 | if (target.isFreeBSDLibC()) { |