diff options
| author | Mitchell Hashimoto <m@mitchellh.com> | 2025-03-11 14:33:33 -0700 |
|---|---|---|
| committer | Mitchell Hashimoto <m@mitchellh.com> | 2025-03-11 14:39:04 -0700 |
| commit | 7e2286eb8c603ade782a3970911531595d57e280 (patch) | |
| tree | d36d0e3604f627344ea72a1c4a4be2a3300e9059 /build.zig | |
| parent | 95daca616db5c24d7bb37fd5a3ac2f8762bb4ead (diff) | |
Zig 0.14
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,7 +3,7 @@ const builtin = @import("builtin"); const buildpkg = @import("src/build/main.zig"); comptime { - buildpkg.requireZig("0.13.0"); + buildpkg.requireZig("0.14.0"); } pub fn build(b: *std.Build) !void { @@ -50,7 +50,7 @@ pub fn build(b: *std.Build) !void { // As such, these build steps are lacking. For example, the Darwin // build only produces an xcframework. if (config.app_runtime == .none) { - if (config.target.result.isDarwin()) darwin: { + if (config.target.result.os.tag.isDarwin()) darwin: { if (!config.emit_xcframework) break :darwin; // Build the xcframework |
