[Git][haskell-team/DHG_packages][master] concurrent-supply: Avoid passing -N RTS flag on NOSMP arches to fix FTBFS
Scott Talbert (@swt2c)
gitlab at salsa.debian.org
Thu May 5 22:29:19 BST 2022
Scott Talbert pushed to branch master at Debian Haskell Group / DHG_packages
Commits:
a8dd34d1 by Scott Talbert at 2022-05-05T17:20:39-04:00
concurrent-supply: Avoid passing -N RTS flag on NOSMP arches to fix FTBFS
- - - - -
3 changed files:
- p/haskell-concurrent-supply/debian/changelog
- + p/haskell-concurrent-supply/debian/patches/no-smp-arches
- p/haskell-concurrent-supply/debian/patches/series
Changes:
=====================================
p/haskell-concurrent-supply/debian/changelog
=====================================
@@ -1,3 +1,9 @@
+haskell-concurrent-supply (0.1.8-3) unstable; urgency=medium
+
+ * Avoid passing -N RTS flag on NOSMP arches to fix FTBFS
+
+ -- Scott Talbert <swt at techie.net> Thu, 05 May 2022 17:20:14 -0400
+
haskell-concurrent-supply (0.1.8-2) unstable; urgency=medium
* Gratuitous post-NEW source-only upload
=====================================
p/haskell-concurrent-supply/debian/patches/no-smp-arches
=====================================
@@ -0,0 +1,14 @@
+--- a/concurrent-supply.cabal
++++ b/concurrent-supply.cabal
+@@ -42,7 +42,10 @@ test-suite properties
+ type: exitcode-stdio-1.0
+ main-is: properties.hs
+ default-language: Haskell2010
+- ghc-options: -w -threaded -rtsopts -with-rtsopts=-N
++ if arch(armel) || arch(mips64el) || arch(mipsel) || arch(s390x)
++ ghc-options: -w -threaded -rtsopts
++ else
++ ghc-options: -w -threaded -rtsopts -with-rtsopts=-N
+ hs-source-dirs: test
+
+ if !flag(test-properties)
=====================================
p/haskell-concurrent-supply/debian/patches/series
=====================================
@@ -1 +1,2 @@
newer-deps
+no-smp-arches
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/a8dd34d1ad364ca08be895b33b4797086294248a
--
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/a8dd34d1ad364ca08be895b33b4797086294248a
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-haskell-commits/attachments/20220505/be6f0ad7/attachment-0001.htm>
More information about the Pkg-haskell-commits
mailing list