| ... | @@ -435,6 +435,17 @@ pub fn isLibCLibName(target: *const std.Target, name: []const u8) bool { | ... | @@ -435,6 +435,17 @@ pub fn isLibCLibName(target: *const std.Target, name: []const u8) bool { |
| 435 | return true; | 435 | return true; |
| 436 | } | 436 | } |
| 437 | | 437 | |
| | 438 | if (target.isOpenBSDLibC()) { |
| | 439 | if (eqlIgnoreCase(ignore_case, name, "execinfo")) |
| | 440 | return true; |
| | 441 | if (eqlIgnoreCase(ignore_case, name, "m")) |
| | 442 | return true; |
| | 443 | if (eqlIgnoreCase(ignore_case, name, "pthread")) |
| | 444 | return true; |
| | 445 | if (eqlIgnoreCase(ignore_case, name, "util")) |
| | 446 | return true; |
| | 447 | } |
| | 448 | |
| 438 | if (target.os.tag == .haiku) { | 449 | if (target.os.tag == .haiku) { |
| 439 | if (eqlIgnoreCase(ignore_case, name, "root")) | 450 | if (eqlIgnoreCase(ignore_case, name, "root")) |
| 440 | return true; | 451 | return true; |