| ... | @@ -740,7 +740,7 @@ fn runStepNames( | ... | @@ -740,7 +740,7 @@ fn runStepNames( |
| 740 | if (run.prominent_compile_errors and total_compile_errors > 0) { | 740 | if (run.prominent_compile_errors and total_compile_errors > 0) { |
| 741 | for (step_stack.keys()) |s| { | 741 | for (step_stack.keys()) |s| { |
| 742 | if (s.result_error_bundle.errorMessageCount() > 0) { | 742 | if (s.result_error_bundle.errorMessageCount() > 0) { |
| 743 | s.result_error_bundle.renderToStdErr(.{ .ttyconf = ttyconf, .include_reference_trace = (b.reference_trace orelse 0) > 0 }); | 743 | s.result_error_bundle.renderToStdErr(.{ .ttyconf = ttyconf }); |
| 744 | } | 744 | } |
| 745 | } | 745 | } |
| 746 | | 746 | |
| ... | @@ -1119,11 +1119,7 @@ fn workerMakeOneStep( | ... | @@ -1119,11 +1119,7 @@ fn workerMakeOneStep( |
| 1119 | defer std.debug.unlockStdErr(); | 1119 | defer std.debug.unlockStdErr(); |
| 1120 | | 1120 | |
| 1121 | const gpa = b.allocator; | 1121 | const gpa = b.allocator; |
| 1122 | const options: std.zig.ErrorBundle.RenderOptions = .{ | 1122 | printErrorMessages(gpa, s, .{ .ttyconf = run.ttyconf }, run.stderr, run.prominent_compile_errors) catch {}; |
| 1123 | .ttyconf = run.ttyconf, | | |
| 1124 | .include_reference_trace = (b.reference_trace orelse 0) > 0, | | |
| 1125 | }; | | |
| 1126 | printErrorMessages(gpa, s, options, run.stderr, run.prominent_compile_errors) catch {}; | | |
| 1127 | } | 1123 | } |
| 1128 | | 1124 | |
| 1129 | handle_result: { | 1125 | handle_result: { |