aboutsummaryrefslogtreecommitdiff
path: root/lib/build_runner.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2023-02-28 23:58:13 -0700
committerAndrew Kelley <andrew@ziglang.org>2023-03-15 10:48:13 -0700
commit0e078790feaf49964d7a0da3042117ebd10de13b (patch)
treedba66f98f82654a645a1540aea8df7d4f1ed4ca2 /lib/build_runner.zig
parent81376e72057026464e1c17330666d4fb3c5a7ce0 (diff)
downloadzig-0e078790feaf49964d7a0da3042117ebd10de13b.tar.gz
zig-0e078790feaf49964d7a0da3042117ebd10de13b.zip
multiplex compiler progress messages into the build runner
Diffstat (limited to 'lib/build_runner.zig')
-rw-r--r--lib/build_runner.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/build_runner.zig b/lib/build_runner.zig
index 9a8f138979..ea4703bfbb 100644
--- a/lib/build_runner.zig
+++ b/lib/build_runner.zig
@@ -571,7 +571,7 @@ fn workerMakeOneStep(
// For example, CompileStep does some sus things with modifying the saved
// *Build object in install header steps that might be able to be removed
// by passing the *Build object through the make() functions.
- const make_result = s.make();
+ const make_result = s.make(&sub_prog_node);
// No matter the result, we want to display error/warning messages.
if (s.result_error_msgs.items.len > 0) {