Skip to content

Commit

Permalink
Update uses of LazyPath
Browse files Browse the repository at this point in the history
The 'path' union field got removed upstream.

See: ziglang/zig#19826
  • Loading branch information
linusg committed May 17, 2024
1 parent ee70f27 commit 4183dc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pub fn build(b: *std.Build) void {

const lib = b.addStaticLibrary(.{
.name = "macos_sdk",
.root_source_file = .{ .path = "stub.c" },
.root_source_file = b.path("stub.c"),
.target = target,
.optimize = optimize,
});
Expand Down

0 comments on commit 4183dc3

Please sign in to comment.