gnu: petsc: Add input superlu.

* gnu/packages/maths.scm (petsc): Configure with superlu support.
This commit is contained in:
Eric Bavier 2014-05-02 14:11:37 -05:00
parent 183e44ae44
commit f258212df5

View file

@ -389,6 +389,7 @@ (define-public petsc
(inputs
`(("gfortran" ,gfortran-4.8)
("lapack" ,lapack)
("superlu" ,superlu)
;; leaving out hdf5 and fftw, as petsc expects them to be built with mpi
;; leaving out opengl, as configuration seems to only be for mac
))
@ -397,7 +398,12 @@ (define-public petsc
#:parallel-build? #f
#:configure-flags
`("--with-mpi=0"
"--with-openmp=1")
"--with-openmp=1"
"--with-superlu=1"
,(string-append "--with-superlu-include="
(assoc-ref %build-inputs "superlu") "/include")
,(string-append "--with-superlu-lib="
(assoc-ref %build-inputs "superlu") "/lib/libsuperlu.a"))
#:phases
(alist-replace
'configure