zig build: bump default max exec output size to 400 KB

closes #3415
This commit is contained in:
Andrew Kelley
2019-10-09 15:23:50 -04:00
parent 3ce83e879b
commit c4e4fa2287

View File

@@ -853,7 +853,7 @@ pub const Builder = struct {
) ![]u8 {
assert(argv.len != 0);
const max_output_size = 100 * 1024;
const max_output_size = 400 * 1024;
const child = try std.ChildProcess.init(argv, self.allocator);
defer child.deinit();