File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ PHP NEWS
13
13
- Core:
14
14
. Fixed bug GH-13970 (Incorrect validation of #[Attribute] flags type for
15
15
non-compile-time expressions). (ilutov)
16
+ . Fixed bug GH-14140 (Floating point bug in range operation on Apple Silicon
17
+ hardware). (Derick, Saki)
16
18
17
19
- DOM:
18
20
. Fix crashes when entity declaration is removed while still having entity
Original file line number Diff line number Diff line change @@ -218,6 +218,9 @@ case $host_cpu in
218
218
;;
219
219
esac
220
220
221
+ dnl See https://github.com/php/php-src/issues/14140
222
+ AX_CHECK_COMPILE_FLAG ( [ -ffp-contract=off] , [ CFLAGS="$CFLAGS -ffp-contract=off"] )
223
+
221
224
dnl Mark symbols hidden by default if the compiler (for example, gcc >= 4)
222
225
dnl supports it. This can help reduce the binary size and startup time.
223
226
AX_CHECK_COMPILE_FLAG ( [ -fvisibility=hidden] ,
You can’t perform that action at this time.
0 commit comments