Package: ignition-math4 Version: 4.0.0+dfsg1-1 Followup-For: Bug #888219 User: [email protected] Usertags: origin-ubuntu bionic ubuntu-patch
Hello, I can confirm that building with -ffloat-store fixes this issue on i386. https://launchpad.net/ubuntu/+source/ignition-math4/4.0.0+dfsg1-1ubuntu2/+build/14331366 Attached is the patch has been uploaded to Ubuntu to fix this issue there, and is one possible solution. (Though you may wish to adjust it to also do the right thing on non-Linux i386 Debian architectures.) Cheers, -- Steve Langasek Give me a lever long enough and a Free OS Debian Developer to set it on, and I can move the world. Ubuntu Developer http://www.debian.org/ [email protected] [email protected]
diff -Nru ignition-math4-4.0.0+dfsg1/debian/rules ignition-math4-4.0.0+dfsg1/debian/rules --- ignition-math4-4.0.0+dfsg1/debian/rules 2018-01-02 15:43:21.000000000 -0800 +++ ignition-math4-4.0.0+dfsg1/debian/rules 2018-02-09 19:39:13.000000000 -0800 @@ -8,6 +8,10 @@ ifeq ($(DEB_HOST_ARCH),amd64) SSE_FLAGS = -mfpmath=sse -msse -msse2 -msse3 -mssse3 -DSSE +else +ifeq ($(DEB_HOST_ARCH),i386) +SSE_FLAGS=-ffloat-store +endif endif override_dh_auto_configure:
-- debian-science-maintainers mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers
