diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-11-20 08:54:52 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2019-11-20 08:54:52 +0100 |
commit | 02913f53d3b5dde2fc381d40cf3be988c1e66acb (patch) | |
tree | 76f9e2ed0cc5644f2697b6dbdb3c30b12f3f7a4a /modules/regex | |
parent | 3be6e76f220f702d41ae5efc526064f87059539b (diff) |
pcre2: Use scons option to disable JIT on some platforms
Third-party platforms (e.g. console ports) need to be able to
disable JIT support in the regex module too, so it can't be
hardcoded in the module SCsub. This is cleaner this way anyway.
Fixes #19316.
Diffstat (limited to 'modules/regex')
-rw-r--r-- | modules/regex/SCsub | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/regex/SCsub b/modules/regex/SCsub index 1be5af02a5..6238cd3d9f 100644 --- a/modules/regex/SCsub +++ b/modules/regex/SCsub @@ -6,12 +6,10 @@ Import('env_modules') env_regex = env_modules.Clone() if env['builtin_pcre2']: - jit_blacklist = ['javascript', 'uwp'] - thirdparty_dir = '#thirdparty/pcre2/src/' thirdparty_flags = ['PCRE2_STATIC', 'HAVE_CONFIG_H'] - if 'platform' in env and env['platform'] not in jit_blacklist: + if env['builtin_pcre2_with_jit']: thirdparty_flags.append('SUPPORT_JIT') thirdparty_sources = [ |