Skip to content
Snippets Groups Projects
Commit 2e2bcb70 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

MethodJIT crashes on OpenBSD

Disable it in jsdoor
parent 48b25c39
No related branches found
No related tags found
No related merge requests found
Pipeline #7844 passed
......@@ -62,8 +62,12 @@ ulong js_max_bytes = JAVASCRIPT_MAX_BYTES;
#ifndef JSDOOR
ulong js_opts = JAVASCRIPT_OPTIONS;
#else
#ifdef __OpenBSD__
ulong js_opts = JSOPTION_VAROBJFIX | JSOPTION_JIT | JSOPTION_COMPILE_N_GO | JSOPTION_PROFILING;
#else
ulong js_opts = JSOPTION_VAROBJFIX | JSOPTION_JIT | JSOPTION_METHODJIT | JSOPTION_COMPILE_N_GO | JSOPTION_PROFILING;
#endif
#endif
FILE* confp;
FILE* errfp;
FILE* nulfp;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment