| ... | ... | @@ -87,7 +87,7 @@ const CheckOutputCaching = struct { |
| 87 | 87 | return check; |
| 88 | 88 | } |
| 89 | 89 | |
| 90 | | fn make(step: *std.Build.Step, _: std.Progress.Node) !void { |
| 90 | fn make(step: *std.Build.Step, _: std.Build.Step.MakeOptions) !void { |
| 91 | 91 | const check: *CheckOutputCaching = @fieldParentPtr("step", step); |
| 92 | 92 | |
| 93 | 93 | for (step.dependencies.items) |dependency| { |
| ... | ... | @@ -125,7 +125,7 @@ const CheckPathEquality = struct { |
| 125 | 125 | return check; |
| 126 | 126 | } |
| 127 | 127 | |
| 128 | | fn make(step: *std.Build.Step, _: std.Progress.Node) !void { |
| 128 | fn make(step: *std.Build.Step, _: std.Build.Step.MakeOptions) !void { |
| 129 | 129 | const check: *CheckPathEquality = @fieldParentPtr("step", step); |
| 130 | 130 | std.debug.assert(check.output_paths.len != 0); |
| 131 | 131 | for (check.output_paths[0 .. check.output_paths.len - 1], check.output_paths[1..]) |a, b| { |