From 54241bc770cbd610f48c365dce3c7ebf69336d73 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Fri, 16 Jan 2026 21:38:44 -0800 Subject: [PATCH] tools: update for std.process API changes --- tools/update_clang_options.zig | 1 - tools/update_cpu_features.zig | 1 - 2 files changed, 2 deletions(-) diff --git a/tools/update_clang_options.zig b/tools/update_clang_options.zig index b52267a3fb..a073062d88 100644 --- 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 index 3041ee6acc..eaa6a9afd2 100644 --- 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) {