File tree 2 files changed +13
-0
lines changed
2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 2
2
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3
3
?? ??? ????, PHP 8.2.8
4
4
5
+ - Core:
6
+ . Fixed build for the riscv64 architecture/GCC 12. (Daniil Gentili)
7
+
5
8
- DOM:
6
9
. Fixed bugs GH-11288 and GH-11289 and GH-11290 and GH-9142 (DOMExceptions
7
10
and segfaults with replaceWith). (nielsdos)
Original file line number Diff line number Diff line change @@ -371,6 +371,16 @@ if test "$ac_cv_func_dlopen" = "yes"; then
371
371
fi
372
372
AC_CHECK_LIB ( m , sin )
373
373
374
+ case $host_alias in
375
+ riscv64*)
376
+ AC_CHECK_LIB ( atomic , __atomic_exchange_1 , [
377
+ PHP_ADD_LIBRARY(atomic)
378
+ ] , [
379
+ AC_MSG_ERROR ( [ Problem with enabling atomic. Please check config.log for details.] )
380
+ ] )
381
+ ;;
382
+ esac
383
+
374
384
dnl Check for inet_aton in -lc, -lbind and -lresolv.
375
385
PHP_CHECK_FUNC(inet_aton, resolv, bind)
376
386
You can’t perform that action at this time.
0 commit comments