Commit f7837f445e

Andrew Kelley <superjoe30@gmail.com>
2017-11-01 21:46:10
bump build_runner allocator to use 30 MB
1 parent 38f05d4
Changed files (1)
std
std/special/build_runner.zig
@@ -14,7 +14,7 @@ pub fn main() -> %void {
     var arg_it = os.args();
 
     // TODO use a more general purpose allocator here
-    var inc_allocator = %%std.heap.IncrementingAllocator.init(20 * 1024 * 1024);
+    var inc_allocator = %%std.heap.IncrementingAllocator.init(30 * 1024 * 1024);
     defer inc_allocator.deinit();
 
     const allocator = &inc_allocator.allocator;