mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-28 23:16:14 +01:00
gregex: use g_debug instead of g_warning in case JIT is not available
In case JIT is not available in pcre2 we printed warning about it. This warning broke tests on systems which don't have JIT support in pcre2 (e.g. macos).
This commit is contained in:
parent
029e90afb7
commit
2c2e059cd3
@ -855,21 +855,21 @@ enable_jit_with_match_options (GRegex *regex,
|
||||
regex->jit_options = new_jit_options;
|
||||
break;
|
||||
case PCRE2_ERROR_NOMEMORY:
|
||||
g_warning ("JIT compilation was requested with G_REGEX_OPTIMIZE, "
|
||||
"but JIT was unable to allocate executable memory for the "
|
||||
"compiler. Falling back to interpretive code.");
|
||||
g_debug ("JIT compilation was requested with G_REGEX_OPTIMIZE, "
|
||||
"but JIT was unable to allocate executable memory for the "
|
||||
"compiler. Falling back to interpretive code.");
|
||||
regex->jit_status = JIT_STATUS_DISABLED;
|
||||
break;
|
||||
case PCRE2_ERROR_JIT_BADOPTION:
|
||||
g_warning ("JIT compilation was requested with G_REGEX_OPTIMIZE, "
|
||||
"but JIT support is not available. Falling back to "
|
||||
"interpretive code.");
|
||||
g_debug ("JIT compilation was requested with G_REGEX_OPTIMIZE, "
|
||||
"but JIT support is not available. Falling back to "
|
||||
"interpretive code.");
|
||||
regex->jit_status = JIT_STATUS_DISABLED;
|
||||
break;
|
||||
default:
|
||||
g_warning ("JIT compilation was requested with G_REGEX_OPTIMIZE, "
|
||||
"but request for JIT support had unexpectedly failed. "
|
||||
"Falling back to interpretive code.");
|
||||
g_debug ("JIT compilation was requested with G_REGEX_OPTIMIZE, "
|
||||
"but request for JIT support had unexpectedly failed. "
|
||||
"Falling back to interpretive code.");
|
||||
regex->jit_status = JIT_STATUS_DISABLED;
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user