Skip to content

Commit

Permalink
disable jit compilation threads for now
Browse files Browse the repository at this point in the history
  • Loading branch information
yamt committed Jun 1, 2023
1 parent c1c198c commit 8a4df36
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/iwasm/interpreter/wasm_loader.c
Original file line number Diff line number Diff line change
Expand Up @@ -3828,10 +3828,12 @@ load_from_sections(WASMModule *module, WASMSection *sections,

#if WASM_ENABLE_FAST_JIT != 0 || WASM_ENABLE_JIT != 0
/* Create threads to compile the jit functions */
#if 0
if (!compile_jit_functions(module, error_buf, error_buf_size)) {
return false;
}
#endif
#endif

#if WASM_ENABLE_MEMORY_TRACING != 0
wasm_runtime_dump_module_mem_consumption((WASMModuleCommon *)module);
Expand Down

0 comments on commit 8a4df36

Please sign in to comment.