bump incrementing allocator memory in build system to 20MB

See #467
This commit is contained in:
Andrew Kelley 2017-09-14 20:28:07 -04:00
parent 5989b88352
commit 766547dbfe

View File

@ -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;