mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-26 13:01:34 +03:00
tools: update for std.process API changes
This commit is contained in:
@@ -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});
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user