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 115c60e commit 881fe21Copy full SHA for 881fe21
.github/workflows/push.yml
@@ -170,7 +170,7 @@ jobs:
170
- name: ./configure
171
uses: ./.github/actions/configure-macos
172
with:
173
- configurationParameters: --enable-debug --disable-zts
+ configurationParameters: --enable-debug --enable-zts
174
- name: make
175
run: |-
176
export PATH="$(brew --prefix)/opt/bison/bin:$PATH"
ext/opcache/config.m4
@@ -42,6 +42,10 @@ if test "$PHP_OPCACHE" != "no"; then
42
PHP_OPCACHE_JIT=no
43
;;
44
esac
45
+ if test "$host_vendor" = "apple" -a "$host_cpu" = "aarch64" -a "$ZEND_ZTS" = "yes"; then
46
+ AC_MSG_WARN([JIT not supported on Apple Silicon with ZTS])
47
+ PHP_OPCACHE_JIT=no
48
+ fi
49
fi
50
51
if test "$PHP_OPCACHE_JIT" = "yes" ; then
0 commit comments