mirror of
https://github.com/ziglang/zig.git
synced 2026-02-18 07:18:38 +00:00
std.zig.target: Remove duplicate libc check for macOS in isLibCLibName().
This commit is contained in:
parent
4894ac4bcb
commit
92117d9bef
@ -223,8 +223,6 @@ pub fn isLibCLibName(target: std.Target, name: []const u8) bool {
|
||||
if (target.os.tag.isDarwin()) {
|
||||
if (eqlIgnoreCase(ignore_case, name, "System"))
|
||||
return true;
|
||||
if (eqlIgnoreCase(ignore_case, name, "c"))
|
||||
return true;
|
||||
if (eqlIgnoreCase(ignore_case, name, "dbm"))
|
||||
return true;
|
||||
if (eqlIgnoreCase(ignore_case, name, "dl"))
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user