[Pkg-haskell-commits] darcs: haskell-hmatrix: Only compile with -msse2 on amd64/i386.

Colin Watson cjwatson at debian.org
Fri May 8 09:56:45 UTC 2015


Fri May  8 09:36:00 UTC 2015  Colin Watson <cjwatson at debian.org>
  * Only compile with -msse2 on amd64/i386.

    M ./changelog +6
    A ./patches/
    A ./patches/series
    A ./patches/sse2-only-x86.patch

Fri May  8 09:36:00 UTC 2015  Colin Watson <cjwatson at debian.org>
  * Only compile with -msse2 on amd64/i386.
diff -rN -u old-haskell-hmatrix/changelog new-haskell-hmatrix/changelog
--- old-haskell-hmatrix/changelog	2015-05-08 09:56:45.797955897 +0000
+++ new-haskell-hmatrix/changelog	2015-05-08 09:56:45.821955909 +0000
@@ -1,3 +1,9 @@
+haskell-hmatrix (0.16.0.3-3) UNRELEASED; urgency=medium
+
+  * Only compile with -msse2 on amd64/i386.
+
+ -- Colin Watson <cjwatson at debian.org>  Fri, 08 May 2015 10:35:12 +0100
+
 haskell-hmatrix (0.16.0.3-2) unstable; urgency=medium
 
   * Upload to unstable
diff -rN -u old-haskell-hmatrix/patches/series new-haskell-hmatrix/patches/series
--- old-haskell-hmatrix/patches/series	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hmatrix/patches/series	2015-05-08 09:56:45.817955907 +0000
@@ -0,0 +1 @@
+sse2-only-x86.patch
diff -rN -u old-haskell-hmatrix/patches/sse2-only-x86.patch new-haskell-hmatrix/patches/sse2-only-x86.patch
--- old-haskell-hmatrix/patches/sse2-only-x86.patch	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hmatrix/patches/sse2-only-x86.patch	2015-05-08 09:56:45.817955907 +0000
@@ -0,0 +1,20 @@
+Description: Only compile with -msse2 on amd64/i386
+Author: Colin Watson <cjwatson at debian.org>
+Forwarded: no
+Last-Update: 2015-05-08
+
+Index: b/hmatrix.cabal
+===================================================================
+--- a/hmatrix.cabal
++++ b/hmatrix.cabal
+@@ -90,7 +90,9 @@
+                         -fno-warn-missing-signatures
+                         -fno-warn-orphans
+ 
+-    cc-options:         -O4 -msse2 -Wall
++    cc-options:         -O4 -Wall
++    if arch(x86_64) || arch(i386)
++        cc-options:     -msse2
+ 
+     cpp-options:        -DBINARY
+ 




More information about the Pkg-haskell-commits mailing list