Michael R. Crusoe pushed to branch master at Debian Med / mypy
Commits: 58280ea8 by Michael R. Crusoe at 2019-10-25T16:14:10Z more arch optimization reductions - - - - - 2 changed files: - debian/changelog - debian/rules Changes: ===================================== debian/changelog ===================================== @@ -1,3 +1,11 @@ +mypy (0.740-4) UNRELEASED; urgency=medium + + * Poor mipsel, can't handle -O2 either. PowerPC and ia64 both have + "Error: operand out of range" errors, so drop each of them another -O level + to see if that helps at all. + + -- Michael R. Crusoe <[email protected]> Fri, 25 Oct 2019 17:39:41 +0200 + mypy (0.740-3) unstable; urgency=medium * Further lower package build time optimization for armhf, armel, mips64el, ===================================== debian/rules ===================================== @@ -14,10 +14,12 @@ endif export DEB_BUILD_MAINT_OPTIONS=hardening=+all include /usr/share/dpkg/default.mk -ifneq (,$(filter $(DEB_HOST_ARCH),armhf mips64el mipsel ia64 risc64)) +ifneq (,$(filter $(DEB_HOST_ARCH),armhf mips64el risc64)) export MYPYC_OPT_LEVEL=2 -else ifneq (,$(filter $(DEB_HOST_ARCH),armel alpha m68k powerpc sh4)) +else ifneq (,$(filter $(DEB_HOST_ARCH),armel mipsel alpha ia64 m68k sh4)) export MYPYC_OPT_LEVEL=1 +else ifneq (,$(filter $(DEB_HOST_ARCH),powerpc)) + export MYPYC_OPT_LEVEL=0 endif %: View it on GitLab: https://salsa.debian.org/med-team/mypy/commit/58280ea828e58cb4ca98c5116c183ab193f3cf8d -- View it on GitLab: https://salsa.debian.org/med-team/mypy/commit/58280ea828e58cb4ca98c5116c183ab193f3cf8d 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
