Support for JIT option for PCRE2

This commit is contained in:
Martin Vierula
2022-12-07 07:47:42 -08:00
parent bc8c37070a
commit a17cbc8f5e
4 changed files with 58 additions and 11 deletions

View File

@@ -45,6 +45,10 @@ struct msc_regex_t {
#ifdef WITH_PCRE2
pcre2_code *re;
pcre2_match_context *match_context;
#ifdef WITH_PCRE_JIT
int jit_compile_rc;
#endif
#else
void *re;
void *pe;