Skip to content

Commit 46d03c5

Browse files
committed
std.Target: Bump minimum glibc version to 2.31.
This is the version in Debian LTS (bullseye).
1 parent 731d653 commit 46d03c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/std/Target.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ pub const Os = struct {
470470
.max = .{ .major = 6, .minor = 13, .patch = 4 },
471471
},
472472
.glibc = blk: {
473-
const default_min: std.SemanticVersion = .{ .major = 2, .minor = 28, .patch = 0 };
473+
const default_min: std.SemanticVersion = .{ .major = 2, .minor = 31, .patch = 0 };
474474

475475
for (std.zig.target.available_libcs) |libc| {
476476
if (libc.os != tag or libc.arch != arch or libc.abi != abi) continue;

0 commit comments

Comments
 (0)