Ports/PHP: Disable PCRE JIT

The PCRE JIT creates memory that needs to be readable, writable and
executable at the same time. Serenity does not like this, so disable
it. This JIT is of limited use for the current applications of PHP
within Serenity anyway :-)
This commit is contained in:
Jelle Raaijmakers 2021-06-04 21:37:28 +02:00 committed by Andreas Kling
commit fccba571a2
Notes: sideshowbarker 2024-07-18 16:51:11 +09:00

View file

@ -10,6 +10,7 @@ configopts="
--prefix=${SERENITY_INSTALL_ROOT}/usr/local
--with-iconv=${SERENITY_INSTALL_ROOT}/usr/local
--with-zlib
--without-pcre-jit
"
export CFLAGS="-I${SERENITY_INSTALL_ROOT}/usr/local/include/libxml2/"