diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2017-11-01 16:46:10 -0400 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2017-11-01 16:46:10 -0400 |
| commit | f7837f445e6ed51f1f68e5b1975550b06f51a52e (patch) | |
| tree | 58227cbaa334802b3eaddd5e809ebc3ed3ef3e99 /std | |
| parent | 38f05d4ac59aa799f947ae1fb4671acafcc283cb (diff) | |
| download | zig-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.zig | 2 |
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; |
