diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-07-15 01:27:23 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-15 01:27:23 -0700 |
| commit | 9d38e82b5c0f28ea6a2d8d31ebd73b6e2a8aad26 (patch) | |
| tree | ba3290d61fd4c856f73a14b6346c674a1a178ffb /lib/std/Build/Step/UpdateSourceFiles.zig | |
| parent | 583e698256a2a26f26738c983e319d76926ef048 (diff) | |
| parent | 445bd7a06fc34c9a59c6458774769bfaa2757a2f (diff) | |
| download | zig-9d38e82b5c0f28ea6a2d8d31ebd73b6e2a8aad26.tar.gz zig-9d38e82b5c0f28ea6a2d8d31ebd73b6e2a8aad26.zip | |
Merge pull request #20633 from ziglang/long-live-zig
make zig compiler processes live across rebuilds
Diffstat (limited to 'lib/std/Build/Step/UpdateSourceFiles.zig')
| -rw-r--r-- | lib/std/Build/Step/UpdateSourceFiles.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/std/Build/Step/UpdateSourceFiles.zig b/lib/std/Build/Step/UpdateSourceFiles.zig index 9d1c8e20fe..d4a9565083 100644 --- a/lib/std/Build/Step/UpdateSourceFiles.zig +++ b/lib/std/Build/Step/UpdateSourceFiles.zig @@ -67,8 +67,8 @@ pub fn addBytesToSource(usf: *UpdateSourceFiles, bytes: []const u8, sub_path: [] }) catch @panic("OOM"); } -fn make(step: *Step, prog_node: std.Progress.Node) !void { - _ = prog_node; +fn make(step: *Step, options: Step.MakeOptions) !void { + _ = options; const b = step.owner; const usf: *UpdateSourceFiles = @fieldParentPtr("step", step); |
