diff options
author | 2021-12-31 18:24:28 -0800 | |
---|---|---|
committer | 2021-12-31 18:24:28 -0800 | |
commit | 83004f0a0a51658a50499256a874558f26e09a24 (patch) | |
tree | 9279f29cbc3fb9da2d81a3035cf68380fc074a1f | |
parent | c42fbbd10e8ecba7e69646b41c09eeb1157c72e7 (diff) | |
download | bun-83004f0a0a51658a50499256a874558f26e09a24.tar.gz bun-83004f0a0a51658a50499256a874558f26e09a24.tar.zst bun-83004f0a0a51658a50499256a874558f26e09a24.zip |
Update build.zig
-rw-r--r-- | build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -182,7 +182,7 @@ pub fn build(b: *std.build.Builder) !void { } else if (arch.isX86()) { target.os_version_min = std.zig.CrossTarget.OsVersion{ .semver = .{ .major = 10, .minor = 14, .patch = 0 } }; } - } else if (target.getOs().isLinux()) { + } else if (target.isLinux()) { target.setGnuLibCVersion(2, 27, 0); } |