diff options
| author | Alan Wu <XrXr@users.noreply.github.com> | 2020-10-05 13:38:17 -0400 |
|---|---|---|
| committer | Alan Wu <XrXr@users.noreply.github.com> | 2021-10-20 18:19:24 -0400 |
| commit | 3c8a9da7efef89a058f0838afae436231265cef8 (patch) | |
| tree | 0826a19abe032f7daf28c1db9d3fb40ce6801ba9 | |
| parent | a132d69757486d080b94d7f2e416de6396e7f894 (diff) | |
Bump executable memory allocation size
We run out it on CI in test-all.
| -rw-r--r-- | ujit_compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ujit_compile.c b/ujit_compile.c index 8a9d196b3b..2b6fad3a72 100644 --- a/ujit_compile.c +++ b/ujit_compile.c @@ -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); |
