diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-07-17 11:09:31 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-07-17 11:09:31 +0200 |
commit | 7b569b01d383592902461d997ea528b086e47b28 (patch) | |
tree | b584f32e95a14eb4becac6115d09c52bf730ce9f /gnu | |
parent | 012c8b35528631bf641d95cdcd33034d4e268b8b (diff) | |
download | guix-7b569b01d383592902461d997ea528b086e47b28.tar guix-7b569b01d383592902461d997ea528b086e47b28.tar.gz |
gnu: lapack: Build the LAPACKE library.
* gnu/packages/maths.scm (lapack)[arguments]: Add "-DLAPACKE=ON".
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/maths.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index c0ee0011d8..643bce5156 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -334,7 +334,8 @@ large scale eigenvalue problems.") (inputs `(("fortran" ,gfortran) ("python" ,python-2))) (arguments - `(#:configure-flags '("-DBUILD_SHARED_LIBS:BOOL=YES") + `(#:configure-flags '("-DBUILD_SHARED_LIBS:BOOL=YES" + "-DLAPACKE=ON") #:phases (alist-cons-before 'check 'patch-python (lambda* (#:key inputs #:allow-other-keys) |