Skip to content

Commit 731d653

Browse files
committed
std.Target: Bump minimum Linux kernel version to 5.10.
This is the kernel in Debian LTS (bullseye).
1 parent c82e1fe commit 731d653

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
@@ -455,7 +455,7 @@ pub const Os = struct {
455455
.linux = .{
456456
.range = .{
457457
.min = blk: {
458-
const default_min: std.SemanticVersion = .{ .major = 4, .minor = 19, .patch = 0 };
458+
const default_min: std.SemanticVersion = .{ .major = 5, .minor = 10, .patch = 0 };
459459

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

0 commit comments

Comments
 (0)