Skip to content

Commit

Permalink
Merge pull request #133 from fwcd/mixxx/disable-pcre2-jit-ios
Browse files Browse the repository at this point in the history
[pcre2] Disable JIT when targeting iOS (microsoft#37059)
  • Loading branch information
JoergAtGithub authored Mar 6, 2024
2 parents 2df9e55 + 17092e1 commit 64983cb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
6 changes: 3 additions & 3 deletions ports/pcre2/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pcre2",
"version": "10.42",
"port-version": 1,
"port-version": 2,
"description": "Regular Expression pattern matching using the same syntax and semantics as Perl 5.",
"homepage": "https://github.com/PCRE2Project/pcre2",
"license": "BSD-3-Clause",
Expand All @@ -21,7 +21,7 @@
"features": {
"jit": {
"description": "Enable support for Just-In-Time compiling regex matchers",
"supports": "!emscripten"
"supports": "!emscripten & !ios"
},
"platform-default-features": {
"description": "Enable default features",
Expand All @@ -31,7 +31,7 @@
"features": [
"jit"
],
"platform": "!emscripten"
"platform": "!emscripten & !ios"
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -6418,7 +6418,7 @@
},
"pcre2": {
"baseline": "10.42",
"port-version": 1
"port-version": 2
},
"pdal": {
"baseline": "2.5.3",
Expand Down
5 changes: 5 additions & 0 deletions versions/p-/pcre2.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "20b801575053f62e43a5ab22a8812e3f01302e88",
"version": "10.42",
"port-version": 2
},
{
"git-tree": "678c2336c4102c5a8868570c60140fdc2a8d1dcf",
"version": "10.42",
Expand Down

0 comments on commit 64983cb

Please sign in to comment.