summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtyom Bologov <mail@aartaka.me>2024-09-15 06:42:29 +0400
committerGuix Patches Tester <>2024-09-15 05:15:52 +0200
commit3f64d52c000c7b1e997b1bb86b51e653b0cfdd14 (patch)
tree18122b46a7b0dc4740eea1b497d192c5b05612ef
parente48426b45421eb8199a0dadbcd0eef3f14511e27 (diff)
downloadguix-patches-issue-73262.tar
guix-patches-issue-73262.tar.gz
gnu: openblas: Add debug output.issue-73262
* gnu/packages/maths.scm (openblas): Add "debug" output [outputs]: Add argument, add "debug" output [arguments]<#:make-flags>: Add DEBUG=1 flag
-rw-r--r--gnu/packages/maths.scm2
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index a0cc0788ca..2d5b239548 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -5173,6 +5173,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
@@ -5225,6 +5226,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