We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3037526 commit 371422bCopy full SHA for 371422b
2 files changed
NEWS
@@ -9,6 +9,9 @@ PHP NEWS
9
. Fixed bug GH-21055 (connection attribute status typo for GSS negotiation).
10
(lsaos)
11
12
+- Windows:
13
+ . Fixed compilation with clang (missing intrin.h include). (Kévin Dunglas)
14
+
15
12 Feb 2026, PHP 8.4.18
16
17
- Core:
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