Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
haskell-cipher-aes: fix optimization issue on armhf, upload to unstable
· 2fa55f4b
Gianfranco Costamagna
authored
Jun 22, 2018
2fa55f4b
haskell-cryptonite: workaround armhf SIGBUS by lowering optimization levels
· c4ad90ca
Gianfranco Costamagna
authored
Jun 22, 2018
c4ad90ca
Show whitespace changes
Inline
Side-by-side
p/haskell-cipher-aes/debian/changelog
View file @
c4ad90ca
haskell-cipher-aes (0.2.11-7)
UNRELEASED
; urgency=medium
haskell-cipher-aes (0.2.11-7)
unstable
; urgency=medium
[ Clint Adams ]
* Set Rules-Requires-Root to no.
-- Clint Adams <clint@debian.org> Sun, 06 May 2018 22:09:23 -0400
[ Mathieu Trudel-Lapierre ]
* Build with optimization disabled on armhf, to workaround SIGBUS in tests.
(Closes: #901406)
- this is not really a fix, but at least the produced binary is more sane.
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 22 Jun 2018 20:02:48 +0200
haskell-cipher-aes (0.2.11-6) unstable; urgency=medium
...
...
p/haskell-cipher-aes/debian/rules
View file @
c4ad90ca
#!/usr/bin/make -f
DEB_ENABLE_TESTS = yes
DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
ifeq ($(DEB_HOST_ARCH),armhf)
DEB_BUILD_OPTIONS += noopt
endif
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk
p/haskell-cryptonite/debian/changelog
View file @
c4ad90ca
haskell-cryptonite (0.25-4)
UNRELEASED
; urgency=medium
haskell-cryptonite (0.25-4)
unstable
; urgency=medium
[ Clint Adams ]
* Set Rules-Requires-Root to no.
-- Clint Adams <clint@debian.org> Sun, 06 May 2018 22:09:30 -0400
[ Steve Langasek ]
* Disable compiler optimization on armhf, which works around a SIGBUS.
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 22 Jun 2018 20:08:21 +0200
haskell-cryptonite (0.25-3) unstable; urgency=medium
...
...
p/haskell-cryptonite/debian/rules
View file @
c4ad90ca
...
...
@@ -2,6 +2,11 @@
DEB_ENABLE_TESTS = yes
DEB_SETUP_GHC_CONFIGURE_ARGS += --flags=-support_aesni
DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
ifeq ($(DEB_HOST_ARCH),armhf)
DEB_BUILD_OPTIONS += noopt
endif
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk