From 29df938c229b4dd30e399413fe3263374a62753c Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Tue, 26 May 2026 00:07:39 -0700 Subject: [PATCH] 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 --- src/main.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.zig b/src/main.zig index bd73f5a08a4d36cf65517b161d13b548d6ee19d6..4bdafc5280e92f66c009262f55356b2bcb18ce24 100644 --- a/src/main.zig +++ b/src/main.zig @@ -5808,7 +5808,7 @@ const MakeRunner = struct { }; fn compileMakeRunner(gpa: Allocator, arena: Allocator, io: Io, options: MakeRunner.Options) !MakeRunner { - const compile_prog_node = options.parent_prog_node.start("Compile Maker", 0); + const compile_prog_node = options.parent_prog_node.start("Compiling maker (first time setup)", 0); defer compile_prog_node.end(); const strip = options.optimize_mode != .Debug; -- 2.54.0