diff --git a/lib/compiler/Maker.zig b/lib/compiler/Maker.zig index 0a0b68aabbe65d31f6f24518c63aa40e9bf387ee..0a8f9824e62d35dbe08bee9305ac4a8f385d2ea7 100644 --- a/lib/compiler/Maker.zig +++ b/lib/compiler/Maker.zig @@ -1120,6 +1120,7 @@ fn configure(graph: *Graph, options: ConfigureOptions) !ScannedConfig { graph.zig_exe, "build-exe", // "--cache-dir", graph.local_cache_root.path orelse ".", // "--global-cache-dir", graph.global_cache_root.path orelse ".", // + "--build-root", graph.build_root_directory.path orelse ".", // "--zig-lib-dir", graph.zig_lib_directory.path orelse ".", // "--name", configurer_exe_name, // "-fsingle-threaded", // @@ -1424,6 +1425,7 @@ fn configure(graph: *Graph, options: ConfigureOptions) !ScannedConfig { break :cp .{ path, man.toOwnedLock() }; } } + try graph.handleVerbose(null, null, build_configurer_argv.items); const configure_exe_path: Path = if (std.zig.buildExeSubprocess(gpa, io, .{ .argv = build_configurer_argv.items, .cache_root = graph.local_cache_root,