commit 766547dbfeffcc05ed41423ee84a546b1dd07fb7 (tree)
parent 5989b88352c472cd146f7205cd46927bfded1108
Author: Andrew Kelley <superjoe30@gmail.com>
Date: Thu, 14 Sep 2017 20:28:07 -0400
bump incrementing allocator memory in build system to 20MB
See #467
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/std/special/build_runner.zig b/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;