File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ jobs:
170170 - name : ./configure
171171 uses : ./.github/actions/configure-macos
172172 with :
173- configurationParameters : --enable-debug --disable -zts
173+ configurationParameters : --enable-debug --enable -zts
174174 - name : make
175175 run : |-
176176 export PATH="$(brew --prefix)/opt/bison/bin:$PATH"
Original file line number Diff line number Diff line change @@ -42,6 +42,16 @@ if test "$PHP_OPCACHE" != "no"; then
4242 PHP_OPCACHE_JIT=no
4343 ;;
4444 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+ esac
4555 fi
4656
4757 if test "$PHP_OPCACHE_JIT" = "yes" ; then
You can’t perform that action at this time.
0 commit comments