mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 02:24:33 +01:00
std.Target: Bump minimum glibc version to 2.31.
This is the version in Debian LTS (bullseye).
This commit is contained in:
parent
731d6531bf
commit
46d03c5afa
1 changed files with 1 additions and 1 deletions
|
|
@ -470,7 +470,7 @@ pub const Os = struct {
|
|||
.max = .{ .major = 6, .minor = 13, .patch = 4 },
|
||||
},
|
||||
.glibc = blk: {
|
||||
const default_min: std.SemanticVersion = .{ .major = 2, .minor = 28, .patch = 0 };
|
||||
const default_min: std.SemanticVersion = .{ .major = 2, .minor = 31, .patch = 0 };
|
||||
|
||||
for (std.zig.target.available_libcs) |libc| {
|
||||
if (libc.os != tag or libc.arch != arch or libc.abi != abi) continue;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue