Étienne Mollier pushed to branch master at Debian Med / ivar
Commits: efa7388f by Étienne Mollier at 2021-09-22T17:51:42+02:00 d/rules: build i386 with -ffloat-store This fixes autopkgtest failure on this platform, as the excess precision otherwise causes a shift against reference data. - - - - - 65528d7e by Étienne Mollier at 2021-09-22T17:54:17+02:00 update changelog - - - - - 2 changed files: - debian/changelog - debian/rules Changes: ===================================== debian/changelog ===================================== @@ -1,3 +1,13 @@ +ivar (1.3.1+dfsg-4) UNRELEASED; urgency=medium + + [ Andreas Tille ] + * The issue now points also to gcc-11_2.patch + + [ Étienne Mollier ] + * d/rules: build i386 with -ffloat-store; this fixes autopkgtest regression. + + -- Étienne Mollier <[email protected]> Wed, 22 Sep 2021 17:53:05 +0200 + ivar (1.3.1+dfsg-3) unstable; urgency=medium * add gcc-11_2.patch; fixes ftbfs with Gcc 11 (thanks for the patch ===================================== debian/rules ===================================== @@ -1,10 +1,13 @@ #!/usr/bin/make -f - # DH_VERBOSE := 1 export LC_ALL=C.UTF-8 - export DEB_BUILD_MAINT_OPTIONS=hardening=+all +# Fix a shift against reference data on i386 causing autopkgtest regressions. +ifneq (,$(filter $(DEB_HOST_ARCH),i386)) +export DEB_CXXFLAGS_MAINT_APPEND = -ffloat-store +endif + %: dh $@ View it on GitLab: https://salsa.debian.org/med-team/ivar/-/compare/55c8556abafba095696d95e6b4fbf6143dc35a7b...65528d7e652d2b23db7e379a8d0d318acff8e9bd -- View it on GitLab: https://salsa.debian.org/med-team/ivar/-/compare/55c8556abafba095696d95e6b4fbf6143dc35a7b...65528d7e652d2b23db7e379a8d0d318acff8e9bd You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ debian-med-commit mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit
