mirror of
https://github.com/ziglang/zig.git
synced 2026-02-13 04:48:20 +00:00
std.Target: bump freebsd known maximum version
This commit is contained in:
parent
2c9ed6daee
commit
86e129eff6
@ -211,8 +211,9 @@ pub const Target = struct {
|
||||
/// If neither of these cases apply, a runtime check should be used to determine if the
|
||||
/// target supports a given OS feature.
|
||||
///
|
||||
/// Binaries built with a given maximum version will continue to function on newer operating system
|
||||
/// versions. However, such a binary may not take full advantage of the newer operating system APIs.
|
||||
/// Binaries built with a given maximum version will continue to function on newer
|
||||
/// operating system versions. However, such a binary may not take full advantage of the
|
||||
/// newer operating system APIs.
|
||||
///
|
||||
/// See `Os.isAtLeast`.
|
||||
pub const VersionRange = union {
|
||||
@ -260,7 +261,7 @@ pub const Target = struct {
|
||||
.freebsd => return .{
|
||||
.semver = Version.Range{
|
||||
.min = .{ .major = 12, .minor = 0 },
|
||||
.max = .{ .major = 12, .minor = 1 },
|
||||
.max = .{ .major = 13, .minor = 0 },
|
||||
},
|
||||
},
|
||||
.macos => return .{
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user