diff options
author | Clint Adams <clint@debian.org> | 2016-10-27 18:25:15 -0400 |
---|---|---|
committer | Clint Adams <clint@debian.org> | 2016-10-27 18:25:15 -0400 |
commit | b2f978b92fc5c186314db3384e3b7f14ffbf99fc (patch) | |
tree | 714cb979df24ed52c0ca76b6044301389f7a0742 | |
parent | ee9cbad7c2c6a2164cb33edf4ac257a7d597d8c6 (diff) | |
download | DHG_packages-b2f978b92fc5c186314db3384e3b7f14ffbf99fc.tar.gz |
src-exts: after nearly 11 days in the mips64el buildd queue, give up
-rw-r--r-- | p/haskell-src-exts/debian/changelog | 3 | ||||
-rwxr-xr-x | p/haskell-src-exts/debian/rules | 8 |
2 files changed, 6 insertions, 5 deletions
diff --git a/p/haskell-src-exts/debian/changelog b/p/haskell-src-exts/debian/changelog index d87850f5c..64c8172d3 100644 --- a/p/haskell-src-exts/debian/changelog +++ b/p/haskell-src-exts/debian/changelog @@ -1,6 +1,7 @@ haskell-src-exts (1.17.1-4) UNRELEASED; urgency=medium - * Re-enable low-memory hack for mips/mipsel. + * Re-enable low-memory hack for mips/mipsel and GOT hack for + mips64el. -- Clint Adams <clint@debian.org> Sat, 22 Oct 2016 22:21:17 -0400 diff --git a/p/haskell-src-exts/debian/rules b/p/haskell-src-exts/debian/rules index 73cd4b189..5078bba2e 100755 --- a/p/haskell-src-exts/debian/rules +++ b/p/haskell-src-exts/debian/rules @@ -21,10 +21,10 @@ DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH) ifneq (,$(filter $(DEB_BUILD_ARCH),mips mipsel)) DEB_SETUP_GHC_CONFIGURE_ARGS += --ghc-options="-optc--param -optcggc-min-expand=10" endif -# -#ifneq (,$(filter $(DEB_BUILD_ARCH),mips64el)) -# DEB_SETUP_GHC_CONFIGURE_ARGS += --ghc-options="-optc-mxgot" -#endif + +ifneq (,$(filter $(DEB_BUILD_ARCH),mips64el)) + DEB_SETUP_GHC_CONFIGURE_ARGS += --ghc-options="-optc-mxgot" +endif include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/hlibrary.mk |