Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
demote mips64el as well
· bdd8d891
Michael R. Crusoe
authored
Oct 25, 2019
bdd8d891
risc64 → riscv64
· 8b68dad7
Michael R. Crusoe
authored
Oct 25, 2019
8b68dad7
SH4 still is OOM at -O1, drop to -O0
· 1edfbda2
Michael R. Crusoe
authored
Oct 25, 2019
1edfbda2
release 0.740-4
· 89625663
Michael R. Crusoe
authored
Oct 25, 2019
89625663
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
89625663
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 1
7:39:41
+0200
-- Michael R. Crusoe <michael.crusoe@gmail.com> Fri, 25 Oct 2019 1
8:26:10
+0200
mypy (0.740-3) unstable; urgency=medium
...
...
debian/rules
View file @
89625663
...
...
@@ -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 risc
v
64))
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
...
...