zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit c4e4fa22877d2929d585f1fea1b2fc82ec8e2d1d (tree)
parent 3ce83e879b48273ada1e4e3d795967004f7d21b3
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Wed,  9 Oct 2019 15:23:50 -0400

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

closes #3415

Diffstat:
Mlib/std/build.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/std/build.zig b/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();