diff options
author | George Marques <george@gmarqu.es> | 2017-10-22 14:51:39 -0200 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2017-10-23 01:22:53 -0200 |
commit | c40eea876e0ad5a17ff079086138c29a5668c3ee (patch) | |
tree | 7c5f2f8b217ad27f4635d88b570c3b8120eaa138 /modules/regex | |
parent | 774023a38e7792ddb51b8e34e7592aac28b10458 (diff) |
Add UWP to Regex JIT blacklist
PCRE2 JIT uses functions not available in UWP, which makes it fail to
link.
Diffstat (limited to 'modules/regex')
-rw-r--r-- | modules/regex/SCsub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/regex/SCsub b/modules/regex/SCsub index 2bab144a28..18b4051afe 100644 --- a/modules/regex/SCsub +++ b/modules/regex/SCsub @@ -8,7 +8,7 @@ env_regex.Append(CPPFLAGS=["-DPCRE2_CODE_UNIT_WIDTH=0"]) env_regex.add_source_files(env.modules_sources, "*.cpp") if env['builtin_pcre2']: - jit_blacklist = ['javascript'] + jit_blacklist = ['javascript', 'uwp'] thirdparty_dir = '#thirdparty/pcre2/src/' thirdparty_flags = ['-DPCRE2_STATIC', '-DHAVE_CONFIG_H'] if 'platform' in env and env['platform'] not in jit_blacklist: |