aboutsummaryrefslogtreecommitdiffstats
path: root/ruby.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-02 07:42:24 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-02 07:42:24 +0000
commitb53114dd99aeb4c0696c8cd7f013c2bf850747dc (patch)
tree75882a8a604e7586091b749442d3fc08c0f12f46 /ruby.c
parente2b7363e4c15443ec4b07049ab3f3bcf7dd147e1 (diff)
downloadruby-b53114dd99aeb4c0696c8cd7f013c2bf850747dc.tar.gz
set up mjit.on at initialization
* ruby.c (cmdline_options_init): set up mjit.on flag by MJIT_FORCE_ENABLE in the initialization function. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63822 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ruby.c')
-rw-r--r--ruby.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/ruby.c b/ruby.c
index 4cf80c4ef1..a34b956184 100644
--- a/ruby.c
+++ b/ruby.c
@@ -179,6 +179,9 @@ cmdline_options_init(ruby_cmdline_options_t *opt)
opt->ext.enc.index = -1;
opt->intern.enc.index = -1;
opt->features = DEFAULT_FEATURES;
+#ifdef MJIT_FORCE_ENABLE /* to use with: ./configure cppflags="-DMJIT_FORCE_ENABLE" */
+ opt->mjit.on = MJIT_FORCE_ENABLE;
+#endif
return opt;
}
@@ -1534,10 +1537,6 @@ process_options(int argc, char **argv, ruby_cmdline_options_t *opt)
const struct rb_block *base_block;
unsigned int dump = opt->dump & dump_exit_bits;
-#ifdef MJIT_FORCE_ENABLE /* to use with: ./configure cppflags="-DMJIT_FORCE_ENABLE" */
- opt->mjit.on = 1;
-#endif
-
if (opt->dump & (DUMP_BIT(usage)|DUMP_BIT(help))) {
const char *const progname =
(argc > 0 && argv && argv[0] ? argv[0] :