From 09e8a8c310c7a91304e8dafd51214c94299d707b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20Mollier?= Date: Tue, 15 Aug 2023 10:45:37 +0200 Subject: fix infinite loop with gcc 13 Bug: https://github.com/FePhyFoFum/phyx/issues/178 Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1037817 Last-Update: 2023-08-12 Since gcc 13, the superdouble operation goes in infinite loop. Disabline compilation with -ffast-math resolves the issue. Last-Update: 2023-08-12 Gbp-Pq: Name deoptimize.patch --- src/Makefile.in | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Makefile.in b/src/Makefile.in index 28681ff..7fb61dd 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -35,8 +35,6 @@ ifneq "$(CXX)" "icc" OPT_FLAGS += -ftree-vectorize ifneq ($(filter @host_cpu@,i386 i486 i586 i686),) OPT_FLAGS += -ffloat-store - else - OPT_FLAGS += -ffast-math endif endif -- cgit v1.2.3