| ... | @@ -574,10 +574,10 @@ pub fn main(init: process.Init.Minimal) !void { | ... | @@ -574,10 +574,10 @@ pub fn main(init: process.Init.Minimal) !void { |
| 574 | .cwd = cwd_path, | 574 | .cwd = cwd_path, |
| 575 | }; | 575 | }; |
| 576 | graph.cache.addPrefix(.{ .path = null, .handle = cwd }); | 576 | graph.cache.addPrefix(.{ .path = null, .handle = cwd }); |
| 577 | graph.cache.addPrefix(graph.build_root_directory); | 577 | graph.cache.addPrefix(zig_lib_directory); |
| 578 | graph.cache.addPrefix(graph.local_cache_root); | 578 | graph.cache.addPrefix(graph.local_cache_root); |
| 579 | graph.cache.addPrefix(global_cache_directory); | 579 | graph.cache.addPrefix(global_cache_directory); |
| 580 | graph.cache.addPrefix(zig_lib_directory); | 580 | graph.cache.addPrefix(graph.build_root_directory); |
| 581 | graph.cache.hash.addBytes(builtin.zig_version_string); | 581 | graph.cache.hash.addBytes(builtin.zig_version_string); |
| 582 | | 582 | |
| 583 | const NO_COLOR = EnvVar.NO_COLOR.isSet(&graph.environ_map); | 583 | const NO_COLOR = EnvVar.NO_COLOR.isSet(&graph.environ_map); |
| ... | @@ -659,7 +659,7 @@ pub fn main(init: process.Init.Minimal) !void { | ... | @@ -659,7 +659,7 @@ pub fn main(init: process.Init.Minimal) !void { |
| 659 | | 659 | |
| 660 | const configurer_root_src_path: Cache.Path = .{ | 660 | const configurer_root_src_path: Cache.Path = .{ |
| 661 | .root_dir = graph.zig_lib_directory, | 661 | .root_dir = graph.zig_lib_directory, |
| 662 | .sub_path = "lib/compiler/configurer.zig", | 662 | .sub_path = "compiler/configurer.zig", |
| 663 | }; | 663 | }; |
| 664 | | 664 | |
| 665 | const root_build_src_path: Cache.Path = .{ | 665 | const root_build_src_path: Cache.Path = .{ |