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:
Efraim Flashner 2023-09-17 21:12:35 +02:00
parent 2b1ae1cffc
commit a473d562ff
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -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)))