summaryrefslogtreecommitdiff
path: root/packages/base/hmatrix-base.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'packages/base/hmatrix-base.cabal')
-rw-r--r--packages/base/hmatrix-base.cabal30
1 files changed, 25 insertions, 5 deletions
diff --git a/packages/base/hmatrix-base.cabal b/packages/base/hmatrix-base.cabal
index 148c8f3..96f90e2 100644
--- a/packages/base/hmatrix-base.cabal
+++ b/packages/base/hmatrix-base.cabal
@@ -15,22 +15,42 @@ cabal-version: >=1.8
15 15
16build-type: Simple 16build-type: Simple
17 17
18extra-source-files: 18extra-source-files: src/C/lapack-aux.h
19 19
20library 20library
21 21
22 Build-Depends: base >= 4 && < 5 22 Build-Depends: base,
23 binary,
24 array,
25 deepseq,
26 storable-complex,
27 vector >= 0.8
23 28
24 hs-source-dirs: src 29 hs-source-dirs: src
25 30
26 exposed-modules: 31 exposed-modules: Data.Packed,
27 32 Data.Packed.Vector,
28 other-modules: 33 Data.Packed.Matrix,
34 Data.Packed.Foreign,
35 Data.Packed.ST,
36 Data.Packed.Development
37
38 other-modules: Data.Packed.Internal,
39 Data.Packed.Internal.Common,
40 Data.Packed.Internal.Signatures,
41 Data.Packed.Internal.Vector,
42 Data.Packed.Internal.Matrix
43
44 C-sources: src/C/lapack-aux.c
45
29 46
30 extensions: ForeignFunctionInterface, 47 extensions: ForeignFunctionInterface,
31 CPP 48 CPP
32 49
33 ghc-options: -Wall 50 ghc-options: -Wall
51 -fno-warn-missing-signatures
52 -fno-warn-orphans
53-- -fno-warn-unused-binds
34 54
35 cc-options: -O4 -msse2 -Wall 55 cc-options: -O4 -msse2 -Wall
36 56