diff options
author | Takashi Kokubun <[email protected]> | 2020-11-22 20:54:32 -0800 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2020-11-22 20:55:33 -0800 |
commit | 0a2b9876968dcfd7015dff09d5e44dcbf5668244 (patch) | |
tree | 3db799c7c3f003076a34fcd9e4c86a3dbef6fff4 /mjit.c | |
parent | 01f38693aa50bce2ce27337bdf5991d08cb41eb4 (diff) |
Make --disable-jit-support compile
vm_core.h needs to be included to know rb_execution_context_t, etc.
I also added a trivial refactoring in mjit.c and missing dependency for
process.c.
Diffstat (limited to 'mjit.c')
-rw-r--r-- | mjit.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -11,10 +11,9 @@ // To share variables privately, include mjit_worker.c instead of linking. -#include "ruby/internal/config.h" - #if USE_MJIT +#include "ruby/internal/config.h" #include "constant.h" #include "id_table.h" #include "internal.h" |