aboutsummaryrefslogtreecommitdiff
path: root/std
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2017-11-01 16:46:10 -0400
committerAndrew Kelley <superjoe30@gmail.com>2017-11-01 16:46:10 -0400
commitf7837f445e6ed51f1f68e5b1975550b06f51a52e (patch)
tree58227cbaa334802b3eaddd5e809ebc3ed3ef3e99 /std
parent38f05d4ac59aa799f947ae1fb4671acafcc283cb (diff)
downloadzig-f7837f445e6ed51f1f68e5b1975550b06f51a52e.tar.gz
zig-f7837f445e6ed51f1f68e5b1975550b06f51a52e.zip
bump build_runner allocator to use 30 MB
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 162cd31c25..89e2c17341 100644
--- a/std/special/build_runner.zig
+++ b/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;