Commit c4e4fa2287

Andrew Kelley <andrew@ziglang.org>
2019-10-09 21:23:50
zig build: bump default max exec output size to 400 KB
closes #3415
1 parent 3ce83e8
Changed files (1)
lib
lib/std/build.zig
@@ -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();