summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Wu <XrXr@users.noreply.github.com>2020-10-05 13:38:17 -0400
committerAlan Wu <XrXr@users.noreply.github.com>2021-10-20 18:19:24 -0400
commit3c8a9da7efef89a058f0838afae436231265cef8 (patch)
tree0826a19abe032f7daf28c1db9d3fb40ce6801ba9
parenta132d69757486d080b94d7f2e416de6396e7f894 (diff)
Bump executable memory allocation size
We run out it on CI in test-all.
-rw-r--r--ujit_compile.c2
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 = &block;
cb_init(cb, mem_block, mem_size/2);