diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-10-20 06:53:00 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-10-20 06:53:00 +0000 |
commit | b710785f1aaaa06bd5cd2e7a584c24aff20c9ab4 (patch) | |
tree | 0f54465ac7315f016a281e371ca90666f0d0e369 /internal.h | |
parent | d79f72521e512a91955881de33be12464b9e3e4e (diff) | |
download | ruby-b710785f1aaaa06bd5cd2e7a584c24aff20c9ab4.tar.gz |
add disabling MJIT features option.
* configure.ac: introduce new configure option `--enable-mjit` and
`--disable-mjit`. Default is "enable".
`--disable-mjit` disables all of MJIT features so that `ruby --jit`
can't enable MJIT.
This option affect a macro `USE_MJIT`.
This change remove `--enable/disable-install-mjit-header` option.
* Makefile.in: introduce the `ENABLE_MJIT` variable.
* common.mk: use `ENABLE_MJIT` option.
* internal.h: respect `USE_MJIT`. Same as other *.c, *.h.
* test/ruby/test_jit.rb: check `ENABLE_MJIT` key of rbconfg.rb.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65204 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'internal.h')
-rw-r--r-- | internal.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/internal.h b/internal.h index ce7d98a878..3f6f5e4608 100644 --- a/internal.h +++ b/internal.h @@ -1403,9 +1403,16 @@ VALUE rb_math_sinh(VALUE); VALUE rb_math_sqrt(VALUE); /* mjit.c */ + +#if USE_MJIT extern int mjit_enabled; VALUE mjit_pause(int wait_p); VALUE mjit_resume(void); +#else +#define mjit_enabled 0 +static inline VALUE mjit_pause(int wait_p){ return Qnil; } /* unreachable */ +static inline VALUE mjit_resume(void){ return Qnil; } /* unreachable */ +#endif /* newline.c */ void Init_newline(void); |