me
/
guix
Archived
1
0
Fork 0

gnu: p4est: Remove dependency on lapack.

* gnu/packages/maths.scm (p4est): Remove dependency on lapack.

Change-Id: I9c76f8b9ba3fc7d5feabfb059505f66ac50972c3
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Romain GARBAGE 2024-03-11 12:06:59 +01:00 committed by Ludovic Courtès
parent 034b16453e
commit 6e16c50b84
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 2 additions and 3 deletions

View File

@ -4732,15 +4732,14 @@ schemes.")
(inputs
`(("fortran" ,gfortran)
("blas" ,openblas)
("lapack" ,lapack)
("zlib" ,zlib)))
(arguments
`(#:configure-flags `(,(string-append "BLAS_LIBS=-L"
(assoc-ref %build-inputs "blas")
" -lopenblas")
,(string-append "LAPACK_LIBS=-L"
(assoc-ref %build-inputs "lapack")
" -llapack"))
(assoc-ref %build-inputs "blas")
" -lopenblas"))
#:phases (modify-phases %standard-phases
(add-before 'check 'mpi-setup
,%openmpi-setup))))