disable MJIT when --enable-all is set

This commit is contained in:
Aaron Patterson 2021-09-08 09:35:23 -07:00 committed by Alan Wu
parent 44214e8ad9
commit ea453acf59

1
ruby.c
View File

@ -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;}
EACH_FEATURES(SET_FEATURE, ;);
if (NAME_MATCH_P("all", str, len)) {
mask &= ~(FEATURE_BIT(jit));
goto found;
}
#if AMBIGUOUS_FEATURE_NAMES