tools: update for std.process API changes

This commit is contained in:
Andrew Kelley 2026-01-16 21:38:44 -08:00
parent f4140f6e8b
commit cfd142c4c6
2 changed files with 0 additions and 2 deletions

View file

@ -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});

View file

@ -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) {