Commit 766547dbfe

Andrew Kelley <superjoe30@gmail.com>
2017-09-15 02:28:07
bump incrementing allocator memory in build system to 20MB
See #467
1 parent 5989b88
Changed files (1)
std
std/special/build_runner.zig
@@ -43,7 +43,7 @@ pub fn main() -> %void {
     };
 
     // TODO use a more general purpose allocator here
-    var inc_allocator = %%mem.IncrementingAllocator.init(10 * 1024 * 1024);
+    var inc_allocator = %%mem.IncrementingAllocator.init(20 * 1024 * 1024);
     defer inc_allocator.deinit();
 
     const allocator = &inc_allocator.allocator;