authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-12-15 20:02:13-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-12-16 03:01:13-07:00
log1530203c804db7e5abd7d6eac05cfbe449d30aea
treeeb8951842972d35e9cff28d4f293ca549a407e11
parentc9863c0a0cd959a1fec748dd9cc8f841e2c81a30

glibc: update default cross-compile version to 2.19

This number tracks the glibc version in the oldest still-active LTS version of Debian, which is Jessie, extended LTS expiring in June 2022, at which point this number can be bumped again.

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

lib/std/target.zig+2-2
......@@ -329,9 +329,9 @@ pub const Target = struct {
329329 .linux = .{
330330 .range = .{
331331 .min = .{ .major = 3, .minor = 16 },
332 .max = .{ .major = 5, .minor = 5, .patch = 5 },
332 .max = .{ .major = 5, .minor = 10, .patch = 81 },
333333 },
334 .glibc = .{ .major = 2, .minor = 17 },
334 .glibc = .{ .major = 2, .minor = 19 },
335335 },
336336 },
337337