diff options
Diffstat (limited to 'hmatrix.cabal')
-rw-r--r-- | hmatrix.cabal | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/hmatrix.cabal b/hmatrix.cabal index 06fc12b..aeef52c 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://www.hmatrix.googlepages.com> | 14 | More information: <http://www.hmatrix.googlepages.com> |
15 | Category: Numerical, Math | 15 | Category: Numerical, Math |
16 | tested-with: GHC ==6.8.3 | 16 | tested-with: GHC ==6.10.0 |
17 | 17 | ||
18 | cabal-version: >=1.2 | 18 | cabal-version: >=1.2 |
19 | build-type: Simple | 19 | build-type: Simple |
@@ -119,14 +119,22 @@ library | |||
119 | 119 | ||
120 | extra-libraries: gsl lapack | 120 | extra-libraries: gsl lapack |
121 | 121 | ||
122 | -- Include here additional libraries if they are | 122 | -- Include additional libraries if they are |
123 | -- required by your system to link -lgsl -llapack | 123 | -- required by your system to link -lgsl -llapack |
124 | |||
125 | -- (In ubuntu/debian cblas is included in blas, | ||
126 | -- which is automatically linked by lapack, so | ||
127 | -- nothing more is required.) | ||
128 | |||
124 | -- Examples: | 129 | -- Examples: |
125 | 130 | ||
126 | -- blas -- (cblas included in blas), not required in ubuntu/debian, | 131 | -------- if blas/cblas are not automatically linked by lapack: |
127 | -- automatically linked by lapack | 132 | -- blas cblas |
128 | 133 | ||
129 | -- gslcblas -- nonoptimized cblas in gsl | 134 | -------- Nonoptimized cblas included in gsl: |
135 | -- gslcblas | ||
130 | 136 | ||
131 | -- f77blas cblas atlas gcc_s -- for atlas-lapack in Arch Linux | 137 | -------- Arch Linux with atlas-lapack: |
132 | -- blas gslcblas gfortran -- for normal blas and lapack in Arch Linux | 138 | -- f77blas cblas atlas gcc_s |
139 | -------- Arch Linux with normal blas and lapack: | ||
140 | -- blas gslcblas gfortran | ||