diff options
author | 2021-12-31 18:23:59 -0800 | |
---|---|---|
committer | 2021-12-31 18:23:59 -0800 | |
commit | c42fbbd10e8ecba7e69646b41c09eeb1157c72e7 (patch) | |
tree | 2ec45b4f70804ae66bbb1a43825168f196a88c7a | |
parent | d068d80ab930b8357f09a3f57cdf014563f4a8d5 (diff) | |
download | bun-c42fbbd10e8ecba7e69646b41c09eeb1157c72e7.tar.gz bun-c42fbbd10e8ecba7e69646b41c09eeb1157c72e7.tar.zst bun-c42fbbd10e8ecba7e69646b41c09eeb1157c72e7.zip |
Set to an explicit glibc
-rw-r--r-- | build.zig | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -182,6 +182,8 @@ 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()) { + target.setGnuLibCVersion(2, 27, 0); } std.mem.copy( |