authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-04-11 21:11:20+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-04-11 21:11:20+02:00
log46d03c5afa5ea14905cf500307013535446fe55d
tree17906bf9a32c25e659094a5de6bc4ba1f77a5688
parent731d6531bfa2cd6b31759965c4926aeffabac45c
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

std.Target: Bump minimum glibc version to 2.31.

This is the version in Debian LTS (bullseye).

1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/Target.zig+1-1
......@@ -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;