mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: openblas-ilp64: Add symbol suffix.
* gnu/packages/maths.scm (openblas-ilp64)[arguments]<#:make-flags>: Add the symbol '64_' as suffix.
This commit is contained in:
parent
2b1ae1cffc
commit
a473d562ff
1 changed files with 4 additions and 1 deletions
|
@ -4635,7 +4635,10 @@ (define-public openblas-ilp64
|
|||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments openblas)
|
||||
((#:make-flags flags #~'())
|
||||
#~(append (list "INTERFACE64=1" "LIBNAMESUFFIX=ilp64")
|
||||
;; These should be '64' but julia hardcodes '64_'.
|
||||
#~(append (list "INTERFACE64=1"
|
||||
"SYMBOLSUFFIX=64_"
|
||||
"LIBPREFIX=libopenblas64_")
|
||||
#$flags))))
|
||||
(synopsis "Optimized BLAS library based on GotoBLAS (ILP64 version)")
|
||||
(license license:bsd-3)))
|
||||
|
|
Loading…
Reference in a new issue