1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.4' into PHP-8.5

* PHP-8.4:
  Zend/zend_call_stack.h: fix missing include on Windows (clang compat) (#20847)
This commit is contained in:
Tim Düsterhus
2026-01-29 10:38:33 +01:00
2 changed files with 6 additions and 0 deletions

3
NEWS
View File

@@ -5,6 +5,9 @@ PHP NEWS
- Core:
. Fixed bug GH-21029 (zend_mm_heap corrupted on Aarch64, LTO builds). (Arnaud)
- Windows:
. Fixed compilation with clang (missing intrin.h include). (Kévin Dunglas)
29 Jan 2026, PHP 8.5.3
- Core:

View File

@@ -21,6 +21,9 @@
#include "zend.h"
#include "zend_portability.h"
#ifdef _MSC_VER
# include <intrin.h>
#endif
#ifdef __APPLE__
# include <pthread.h>
#endif