summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2008-01-17 19:17:09 +0000
committerAlberto Ruiz <aruiz@um.es>2008-01-17 19:17:09 +0000
commit6f8f6b963f034f4d450bc9448f280702001406ec (patch)
tree00c6890296290eab100287c2abb4ad9d2ef567b2
parentd4c8878eb2e6114fd483e1225f060dfec1fc100c (diff)
arch detected in cabal file
-rw-r--r--hmatrix.cabal7
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>
15Category: Numerical, Math 15Category: Numerical, Math
16tested-with: GHC ==6.6.1, GHC ==6.8.1 16tested-with: GHC ==6.6.1, GHC ==6.8.1, GHC ==6.8.2
17 17
18cabal-version: >=1.2 18cabal-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