Skip to content
Commits on Source (4)
mypy (0.740-4) UNRELEASED; urgency=medium
mypy (0.740-4) unstable; urgency=medium
* Poor mipsel, can't handle -O2 either. PowerPC and ia64 both have
* Poor mipsel & mipsel64, 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.
to see if that helps at all. SH4 still is OOM at -O1, drop to -O0.
* typo fix: risc64 → riscv64
-- Michael R. Crusoe <michael.crusoe@gmail.com> Fri, 25 Oct 2019 17:39:41 +0200
-- Michael R. Crusoe <michael.crusoe@gmail.com> Fri, 25 Oct 2019 18:26:10 +0200
mypy (0.740-3) unstable; urgency=medium
......
......@@ -14,11 +14,11 @@ endif
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
include /usr/share/dpkg/default.mk
ifneq (,$(filter $(DEB_HOST_ARCH),armhf mips64el risc64))
ifneq (,$(filter $(DEB_HOST_ARCH),armhf riscv64))
export MYPYC_OPT_LEVEL=2
else ifneq (,$(filter $(DEB_HOST_ARCH),armel mipsel alpha ia64 m68k sh4))
else ifneq (,$(filter $(DEB_HOST_ARCH),armel mips64el mipsel alpha ia64 m68k))
export MYPYC_OPT_LEVEL=1
else ifneq (,$(filter $(DEB_HOST_ARCH),powerpc))
else ifneq (,$(filter $(DEB_HOST_ARCH),powerpc sh4))
export MYPYC_OPT_LEVEL=0
endif
......