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