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:
parent
a132d69757
commit
3c8a9da7ef
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue