12 lines
486 B
Diff
12 lines
486 B
Diff
--- zig-0.10.1/lib/std/build.zig.orig 2023-03-18 13:15:44.162105708 +0100
|
|
+++ zig-0.10.1/lib/std/build.zig 2023-03-18 13:15:48.812081417 +0100
|
|
@@ -1181,7 +1181,7 @@
|
|
if (!std.process.can_spawn)
|
|
return error.ExecNotSupported;
|
|
|
|
- const max_output_size = 400 * 1024;
|
|
+ const max_output_size = 1000 * 1024;
|
|
var child = std.ChildProcess.init(argv, self.allocator);
|
|
child.stdin_behavior = .Ignore;
|
|
child.stdout_behavior = .Pipe;
|