gnu: openblas: Add debug output.

* gnu/packages/maths.scm (openblas): Add "debug" output
[outputs]: Add argument, add "debug" output
[arguments]<#:make-flags>: Add DEBUG=1 flag
This commit is contained in:
Artyom Bologov 2024-09-15 06:42:29 +04:00 committed by Ricardo Wurmus
parent 3b81b7fb2f
commit 89a0d64ebc
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -5747,6 +5747,7 @@ parts of it.")
#:make-flags
#~(list (string-append "PREFIX=" #$output)
"SHELL=bash"
"DEBUG=1" ; enable debug symbols
"MAKE_NB_JOBS=0" ;use jobserver for submakes
"NO_STATIC=1" ;avoid a 67 MiB static archive
@ -5799,6 +5800,7 @@ parts of it.")
(list `(,gfortran "lib")))
(native-inputs
(list cunit gfortran perl))
(outputs '("out" "debug"))
(home-page "https://www.openblas.net/")
(synopsis "Optimized BLAS library based on GotoBLAS")
(description