We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fafb78e commit fa398d4Copy full SHA for fa398d4
1 file changed
pkgs/development/libraries/pcre2/default.nix
@@ -23,7 +23,8 @@ stdenv.mkDerivation rec {
23
"--enable-pcre2-16"
24
"--enable-pcre2-32"
25
# only enable jit on supported platforms which excludes Apple Silicon, see https://github.com/zherczeg/sljit/issues/51
26
- "--enable-jit=${if stdenv.hostPlatform.isS390x then "no" else "auto"}"
+ # pthread_jit_write_protect_np is not available on iOS
27
+ "--enable-jit=${if stdenv.hostPlatform.isS390x || stdenv.hostPlatform.isiOS then "no" else "auto"}"
28
]
29
# fix pcre jit in systemd units that set MemoryDenyWriteExecute=true like gitea
30
++ lib.optional withJitSealloc "--enable-jit-sealloc";
0 commit comments