We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cd32c59 + 371422b commit 59433f8Copy full SHA for 59433f8
2 files changed
NEWS
@@ -5,6 +5,9 @@ PHP NEWS
5
- Core:
6
. Fixed bug GH-21029 (zend_mm_heap corrupted on Aarch64, LTO builds). (Arnaud)
7
8
+- Windows:
9
+ . Fixed compilation with clang (missing intrin.h include). (Kévin Dunglas)
10
+
11
29 Jan 2026, PHP 8.5.3
12
13
Zend/zend_call_stack.h
@@ -21,6 +21,9 @@
21
22
#include "zend.h"
23
#include "zend_portability.h"
24
+#ifdef _MSC_VER
25
+# include <intrin.h>
26
+#endif
27
#ifdef __APPLE__
28
# include <pthread.h>
29
#endif
0 commit comments