| ... | ... | @@ -1120,6 +1120,7 @@ fn configure(graph: *Graph, options: ConfigureOptions) !ScannedConfig { |
| 1120 | 1120 | graph.zig_exe, "build-exe", // |
| 1121 | 1121 | "--cache-dir", graph.local_cache_root.path orelse ".", // |
| 1122 | 1122 | "--global-cache-dir", graph.global_cache_root.path orelse ".", // |
| 1123 | "--build-root", graph.build_root_directory.path orelse ".", // |
| 1123 | 1124 | "--zig-lib-dir", graph.zig_lib_directory.path orelse ".", // |
| 1124 | 1125 | "--name", configurer_exe_name, // |
| 1125 | 1126 | "-fsingle-threaded", // |
| ... | ... | @@ -1424,6 +1425,7 @@ fn configure(graph: *Graph, options: ConfigureOptions) !ScannedConfig { |
| 1424 | 1425 | break :cp .{ path, man.toOwnedLock() }; |
| 1425 | 1426 | } |
| 1426 | 1427 | } |
| 1428 | try graph.handleVerbose(null, null, build_configurer_argv.items); |
| 1427 | 1429 | const configure_exe_path: Path = if (std.zig.buildExeSubprocess(gpa, io, .{ |
| 1428 | 1430 | .argv = build_configurer_argv.items, |
| 1429 | 1431 | .cache_root = graph.local_cache_root, |