diff options
-rw-r--r-- | hmatrix.cabal | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/hmatrix.cabal b/hmatrix.cabal index 9a0235f..cf6cbef 100644 --- a/hmatrix.cabal +++ b/hmatrix.cabal | |||
@@ -13,7 +13,7 @@ Description: A purely functional interface to basic linear algebra comput | |||
13 | . | 13 | . |
14 | More information: <http://alberrto.googlepages.com/gslhaskell> | 14 | More information: <http://alberrto.googlepages.com/gslhaskell> |
15 | Category: Numerical, Math | 15 | Category: Numerical, Math |
16 | tested-with: GHC ==6.6.1, GHC ==6.8.1 | 16 | tested-with: GHC ==6.6.1, GHC ==6.8.1, GHC ==6.8.2 |
17 | 17 | ||
18 | cabal-version: >=1.2 | 18 | cabal-version: >=1.2 |
19 | 19 | ||
@@ -31,7 +31,10 @@ library | |||
31 | if os(windows) | 31 | if os(windows) |
32 | ghc-options: -fasm | 32 | ghc-options: -fasm |
33 | else | 33 | else |
34 | ghc-options: -fvia-C | 34 | if arch(x86_64) |
35 | ghc-options: -fasm | ||
36 | else | ||
37 | ghc-options: -fvia-C | ||
35 | 38 | ||
36 | Build-Depends: haskell98 | 39 | Build-Depends: haskell98 |
37 | Extensions: ForeignFunctionInterface | 40 | Extensions: ForeignFunctionInterface |