Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
juicypixels: Compile with --ghc-options="-O0"
· 24599335
Ilias Tsitsimpis
authored
Nov 07, 2018
24599335
gloss: Compile with --ghc-options="-O0"
· e0e0ecbd
Ilias Tsitsimpis
authored
Nov 07, 2018
e0e0ecbd
Show whitespace changes
Inline
Side-by-side
p/haskell-gloss/debian/changelog
View file @
e0e0ecbd
haskell-gloss (1.13.0.1-2) unstable; urgency=medium
* Compile with --ghc-options="-O0" on unregisterised 64-bit arches
to work-around a GHC bug.
-- Ilias Tsitsimpis <iliastsi@debian.org> Wed, 07 Nov 2018 12:04:10 +0200
haskell-gloss (1.13.0.1-1) unstable; urgency=medium
* Bump debhelper compat level to 10
...
...
p/haskell-gloss/debian/rules
View file @
e0e0ecbd
#!/usr/bin/make -f
# Work-around a bug in GHC where it fails to compile gloss
# on 64-bit unregisterised arches.
# https://ghc.haskell.org/trac/ghc/ticket/15853
ifneq (,$(filter $(DEB_BUILD_ARCH),mips64el s390x alpha ia64 riscv64 sparc64))
DEB_SETUP_GHC_CONFIGURE_ARGS += --ghc-options="-O0"
endif
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk
p/haskell-juicypixels/debian/changelog
View file @
e0e0ecbd
haskell-juicypixels (3.2.9.5-4) unstable; urgency=medium
* Compile with --ghc-options="-O0" on unregisterised 64-bit arches
to work-around a GHC bug.
-- Ilias Tsitsimpis <iliastsi@debian.org> Wed, 07 Nov 2018 11:36:59 +0200
haskell-juicypixels (3.2.9.5-3) unstable; urgency=medium
* Remove build dependency on libghc-mtl-dev (provided by ghc-8.4.3)
...
...
p/haskell-juicypixels/debian/rules
View file @
e0e0ecbd
...
...
@@ -2,5 +2,12 @@
# DEB_ENABLE_TESTS = yes
# Work-around a bug in GHC where it fails to compile juicypixels
# on 64-bit unregisterised arches.
# https://ghc.haskell.org/trac/ghc/ticket/15853
ifneq (,$(filter $(DEB_BUILD_ARCH),mips64el s390x alpha ia64 riscv64 sparc64))
DEB_SETUP_GHC_CONFIGURE_ARGS += --ghc-options="-O0"
endif
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk