aboutsummaryrefslogtreecommitdiff
path: root/std
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2017-09-14 20:28:07 -0400
committerAndrew Kelley <superjoe30@gmail.com>2017-09-14 20:28:38 -0400
commit766547dbfeffcc05ed41423ee84a546b1dd07fb7 (patch)
tree93df50cde6d4449999ad625204a98f7893005c5e /std
parent5989b88352c472cd146f7205cd46927bfded1108 (diff)
downloadzig-766547dbfeffcc05ed41423ee84a546b1dd07fb7.tar.gz
zig-766547dbfeffcc05ed41423ee84a546b1dd07fb7.zip
bump incrementing allocator memory in build system to 20MB
See #467
Diffstat (limited to 'std')
-rw-r--r--std/special/build_runner.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/special/build_runner.zig b/std/special/build_runner.zig
index 0a3cce8c2f..4dfb6301fc 100644
--- 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;