pkg/apple-sdk: depend on macOS 14 SDK

This commit is contained in:
Mitchell Hashimoto
2024-01-10 09:32:24 -08:00
parent 7e1f1d360f
commit 41de9c6e97

View File

@ -41,7 +41,7 @@ const SDK = struct {
pub fn fromTarget(target: std.Target) !SDK {
return switch (target.os.tag) {
.macos => .{ .platform = "MacOSX", .version = "14.2" },
.macos => .{ .platform = "MacOSX", .version = "14" },
else => {
std.log.err("unsupported os={}", .{target.os.tag});
return error.UnsupportedOS;