mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
std.Target: Bump minimum Linux kernel version to 5.10.
This is the kernel in Debian LTS (bullseye).
This commit is contained in:
parent
c82e1fe880
commit
731d6531bf
1 changed files with 1 additions and 1 deletions
|
|
@ -455,7 +455,7 @@ pub const Os = struct {
|
|||
.linux = .{
|
||||
.range = .{
|
||||
.min = blk: {
|
||||
const default_min: std.SemanticVersion = .{ .major = 4, .minor = 19, .patch = 0 };
|
||||
const default_min: std.SemanticVersion = .{ .major = 5, .minor = 10, .patch = 0 };
|
||||
|
||||
for (std.zig.target.available_libcs) |libc| {
|
||||
if (libc.arch != arch or libc.os != tag or libc.abi != abi) continue;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue