commit 54241bc770cbd610f48c365dce3c7ebf69336d73 (tree)
parent 9134430387bb99504c5813abc8b566a97ba5b1f0
Author: Andrew Kelley <andrew@ziglang.org>
Date: Fri, 16 Jan 2026 21:38:44 -0800
tools: update for std.process API changes
Diffstat:
2 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/tools/update_clang_options.zig b/tools/update_clang_options.zig
@@ -676,7 +676,6 @@ pub fn main(init: std.process.Init) !void {
const child_result = try std.process.run(arena, io, .{
.argv = &child_args,
- .max_output_bytes = 100 * 1024 * 1024,
});
std.debug.print("{s}\n", .{child_result.stderr});
diff --git a/tools/update_cpu_features.zig b/tools/update_cpu_features.zig
@@ -1987,7 +1987,6 @@ fn processOneTarget(io: Io, job: Job) void {
const child_result = try std.process.run(arena, io, .{
.argv = &child_args,
- .max_output_bytes = 500 * 1024 * 1024,
});
tblgen_progress.end();
if (child_result.stderr.len != 0) {