diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-09-17 21:12:35 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-09-28 13:48:31 +0300 |
commit | a473d562ffdd745285fa6c82ba9a8d7e421e8bca (patch) | |
tree | ceaf838de834de31e862a510f9e391042212dde8 /gnu | |
parent | 2b1ae1cffc6a94935c2501c393ee210c2cf68c16 (diff) |
gnu: openblas-ilp64: Add symbol suffix.
* gnu/packages/maths.scm (openblas-ilp64)[arguments]<#:make-flags>: Add the
symbol '64_' as suffix.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/maths.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 62d4adfbd1..91133f721a 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -4635,7 +4635,10 @@ parts of it.") (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))) |