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 69e5ebeCopy full SHA for 69e5ebe
.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,16 @@ if test "$PHP_OPCACHE" != "no"; then
42
PHP_OPCACHE_JIT=no
43
;;
44
esac
45
+ case "$host_vendor" in
46
+ apple*)
47
+ case "$host_cpu" in
48
+ arm*)
49
+ if test "$ZEND_ZTS" = "yes"; then
50
+ AC_MSG_WARN([JIT not supported on Apple Silicon with ZTS])
51
+ PHP_OPCACHE_JIT=no
52
+ fi
53
+ esac
54
55
fi
56
57
if test "$PHP_OPCACHE_JIT" = "yes" ; then
0 commit comments