authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-05-26 00:07:39-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-05-26 09:03:34-07:00
log29df938c229b4dd30e399413fe3263374a62753c
treef843112bb6d36edc52a3b223af3c5dc1226c07cc
parent349053e32239fb718b446c4f6a4c92387d6bb1b5

zig build: add "first time setup" to progress node

when building the maker, so that users who freshly downloaded zig don't worry that it will take this long every time they run zig build

1 files changed, 1 insertions(+), 1 deletions(-)

src/main.zig+1-1
......@@ -5808,7 +5808,7 @@ const MakeRunner = struct {
58085808};
58095809
58105810fn compileMakeRunner(gpa: Allocator, arena: Allocator, io: Io, options: MakeRunner.Options) !MakeRunner {
5811 const compile_prog_node = options.parent_prog_node.start("Compile Maker", 0);
5811 const compile_prog_node = options.parent_prog_node.start("Compiling maker (first time setup)", 0);
58125812 defer compile_prog_node.end();
58135813
58145814 const strip = options.optimize_mode != .Debug;