Commit c78acce
committed
Fix macOS 15 Intel RELEASE builds by disabling JIT
Disable opcache JIT for macOS 15 Intel (x86_64) RELEASE builds to work around Clang 17 tail call optimization bug that causes compilation failure in zend_jit_vm_helpers.c.
The error occurs due to incompatibility between PHP JIT musttail attributes and Clang 17's tail call elimination.
- DEBUG builds on macOS 15 Intel: JIT remains enabled
- ARM64 builds (macOS 14): unaffected, JIT works normally
- Other platforms: no changes1 parent 2ad69e5 commit c78acce
1 file changed
+9
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
74 | 74 | | |
75 | 75 | | |
76 | 76 | | |
77 | | - | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
78 | 84 | | |
79 | 85 | | |
80 | 86 | | |
| |||
127 | 133 | | |
128 | 134 | | |
129 | 135 | | |
130 | | - | |
| 136 | + | |
| 137 | + | |
131 | 138 | | |
132 | 139 | | |
133 | 140 | | |
| |||
0 commit comments