aboutsummaryrefslogtreecommitdiff
path: root/src/target.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2020-12-08 00:07:14 -0700
committerAndrew Kelley <andrew@ziglang.org>2020-12-08 13:17:57 -0500
commit97c0e1cc41c24c6cbb60117751d5b82dcd9d0e43 (patch)
tree4201ab52946c7d65715e6613388a17bc0b63de4b /src/target.zig
parent1847d0cfc2c1445e27729f84aa4b4385f1a32d12 (diff)
downloadzig-97c0e1cc41c24c6cbb60117751d5b82dcd9d0e43.tar.gz
zig-97c0e1cc41c24c6cbb60117751d5b82dcd9d0e43.zip
glibc: additionally provide -lcrypt
also remove redundant "util" string matching.
Diffstat (limited to 'src/target.zig')
-rw-r--r--src/target.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/target.zig b/src/target.zig
index 34b6dc16a0..647237b680 100644
--- a/src/target.zig
+++ b/src/target.zig
@@ -324,8 +324,6 @@ pub fn is_libc_lib_name(target: std.Target, name: []const u8) bool {
return true;
if (eqlIgnoreCase(ignore_case, name, "dl"))
return true;
- if (eqlIgnoreCase(ignore_case, name, "util"))
- return true;
}
if (target.os.tag.isDarwin() and eqlIgnoreCase(ignore_case, name, "System"))