We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c128dbd + bf3fb4e commit a1043feCopy full SHA for a1043fe
NEWS
@@ -4,6 +4,8 @@ PHP NEWS
4
5
- Core:
6
. Fixed bug GH-11937 (Constant ASTs containing objects). (ilutov)
7
+ . Fixed bug GH-11790 (On riscv64 require libatomic if actually needed).
8
+ (Jeremie Courreges-Anglas)
9
10
- DOM:
11
. Fix memory leak when setting an invalid DOMDocument encoding. (nielsdos)
configure.ac
@@ -375,11 +375,7 @@ AC_CHECK_LIB(m, sin)
375
376
case $host_alias in
377
riscv64*)
378
- AC_CHECK_LIB(atomic, __atomic_exchange_1, [
379
- PHP_ADD_LIBRARY(atomic)
380
- ], [
381
- AC_MSG_ERROR([Problem with enabling atomic. Please check config.log for details.])
382
- ])
+ PHP_CHECK_FUNC(__atomic_exchange_1, atomic)
383
;;
384
esac
385
0 commit comments