mirror of
https://github.com/ruby/ruby.git
synced 2025-09-18 18:13:58 +02:00
disable MJIT when --enable-all is set
This commit is contained in:
parent
44214e8ad9
commit
ea453acf59
1 changed files with 1 additions and 0 deletions
1
ruby.c
1
ruby.c
|
@ -925,6 +925,7 @@ feature_option(const char *str, int len, void *arg, const unsigned int enable)
|
||||||
if (NAME_MATCH_P(#bit, str, len)) {set |= mask = FEATURE_BIT(bit); FEATURE_FOUND;}
|
if (NAME_MATCH_P(#bit, str, len)) {set |= mask = FEATURE_BIT(bit); FEATURE_FOUND;}
|
||||||
EACH_FEATURES(SET_FEATURE, ;);
|
EACH_FEATURES(SET_FEATURE, ;);
|
||||||
if (NAME_MATCH_P("all", str, len)) {
|
if (NAME_MATCH_P("all", str, len)) {
|
||||||
|
mask &= ~(FEATURE_BIT(jit));
|
||||||
goto found;
|
goto found;
|
||||||
}
|
}
|
||||||
#if AMBIGUOUS_FEATURE_NAMES
|
#if AMBIGUOUS_FEATURE_NAMES
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue