| author | |
| committer | |
| log | 5a6c3aaedfef1ff242317f622252e0c7eebf0159 |
| tree | 603a1f8b29a377b35b42d3afaa6446b9f578af3f |
| parent | e820cf38ed05702aa08c3b61bd0bc5cdc4bc74b0 |
3 files changed, 0 insertions(+), 3 deletions(-)
lib/compiler/Maker.zig-1| ... | @@ -1415,7 +1415,6 @@ fn configure(graph: *Graph, options: ConfigureOptions) !ScannedConfig { | ... | @@ -1415,7 +1415,6 @@ fn configure(graph: *Graph, options: ConfigureOptions) !ScannedConfig { |
| 1415 | 1415 | ||
| 1416 | if (config_man) |man| { | 1416 | if (config_man) |man| { |
| 1417 | if (try man.hit(compile_prog_node)) { | 1417 | if (try man.hit(compile_prog_node)) { |
| 1418 | log.debug("configuration cache hit", .{}); | ||
| 1419 | const digest = man.final(); | 1418 | const digest = man.final(); |
| 1420 | const path: Path = .{ | 1419 | const path: Path = .{ |
| 1421 | .root_dir = graph.local_cache_root, | 1420 | .root_dir = graph.local_cache_root, |
lib/std/zig.zig-1| ... | @@ -1763,7 +1763,6 @@ pub fn buildExeSubprocess( | ... | @@ -1763,7 +1763,6 @@ pub fn buildExeSubprocess( |
| 1763 | const sub_path = try gpa.dupe(u8, prefixed_path[1..]); | 1763 | const sub_path = try gpa.dupe(u8, prefixed_path[1..]); |
| 1764 | var keep = false; | 1764 | var keep = false; |
| 1765 | defer if (!keep) gpa.free(sub_path); | 1765 | defer if (!keep) gpa.free(sub_path); |
| 1766 | log.debug("file system input: {t} {s}", .{ prefix, sub_path }); | ||
| 1767 | keep = man.addPrefixedPathPost(.{ | 1766 | keep = man.addPrefixedPathPost(.{ |
| 1768 | .prefix = @backingInt(prefix), | 1767 | .prefix = @backingInt(prefix), |
| 1769 | .sub_path = sub_path, | 1768 | .sub_path = sub_path, |
src/Compilation.zig-1| ... | @@ -2020,7 +2020,6 @@ pub fn create(gpa: Allocator, arena: Allocator, io: Io, diag: *CreateDiagnostic, | ... | @@ -2020,7 +2020,6 @@ pub fn create(gpa: Allocator, arena: Allocator, io: Io, diag: *CreateDiagnostic, |
| 2020 | cache.addPrefix(options.dirs.zig_lib); | 2020 | cache.addPrefix(options.dirs.zig_lib); |
| 2021 | cache.addPrefix(options.dirs.local_cache); | 2021 | cache.addPrefix(options.dirs.local_cache); |
| 2022 | cache.addPrefix(options.dirs.global_cache); | 2022 | cache.addPrefix(options.dirs.global_cache); |
| 2023 | log.debug("addPrefix build_root {s}", .{options.dirs.build_root.path orelse "(null)"}); | ||
| 2024 | cache.addPrefix(options.dirs.build_root); | 2023 | cache.addPrefix(options.dirs.build_root); |
| 2025 | errdefer cache.manifest_dir.close(io); | 2024 | errdefer cache.manifest_dir.close(io); |
| 2026 | 2025 |