1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Bump executable memory allocation size

We run out it on CI in test-all.
This commit is contained in:
Alan Wu 2020-10-05 13:38:17 -04:00
parent a132d69757
commit 3c8a9da7ef

View file

@ -516,7 +516,7 @@ rb_ujit_init(void)
return;
}
// Initialize the code blocks
size_t mem_size = 64 * 1024 * 1024;
size_t mem_size = 128 * 1024 * 1024;
uint8_t* mem_block = alloc_exec_mem(mem_size);
cb = █
cb_init(cb, mem_block, mem_size/2);