diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-07-25 18:52:39 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-25 18:52:39 -0700 |
| commit | afddfe25d80ee4db930ba746f25264286af6d325 (patch) | |
| tree | 13c7fa62cbe65047da0cd109784ef417e92bd6ae /src/Compilation.zig | |
| parent | 1c35e73b614398529782f8c027366c6d8d51ac4b (diff) | |
| parent | 688c2df6464bd10a2dcfdf49e89c313e01da9991 (diff) | |
| download | zig-afddfe25d80ee4db930ba746f25264286af6d325.tar.gz zig-afddfe25d80ee4db930ba746f25264286af6d325.zip | |
Merge pull request #20773 from ziglang/fuzz
integrate fuzz testing into the build system
Diffstat (limited to 'src/Compilation.zig')
| -rw-r--r-- | src/Compilation.zig | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig index bc5a2bb456..8808e72e04 100644 --- a/src/Compilation.zig +++ b/src/Compilation.zig @@ -2180,7 +2180,9 @@ pub fn update(comp: *Compilation, main_progress_node: std.Progress.Node) !void { comp.bin_file = try link.File.createEmpty(arena, comp, emit, whole.lf_open_opts); } }, - .incremental => {}, + .incremental => { + log.debug("Compilation.update for {s}, CacheMode.incremental", .{comp.root_name}); + }, } // From this point we add a preliminary set of file system inputs that |
