From 024c92fac091f59dcdbd3a78eb6ea77bb15b2170 Mon Sep 17 00:00:00 2001 Message-Id: <024c92fac091f59dcdbd3a78eb6ea77bb15b2170.1687449033.git.zimon.toutoune@gmail.com> From: Simon Tournier Date: Thu, 22 Jun 2023 17:45:50 +0200 Subject: [PATCH] gnu: julia: Use openblas with ILP64 support. Fixes . Reported by Cayetano Santos . * gnu/packages/julia.scm (julia)[arguments]<#:make-flags>: Use OpenBLAS with ILP64 support. [inputs]: Replace openblas by openblas-ilp64. --- gnu/packages/julia.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gnu/packages/julia.scm b/gnu/packages/julia.scm index ba54175822..a034cbf543 100644 --- a/gnu/packages/julia.scm +++ b/gnu/packages/julia.scm @@ -481,10 +481,10 @@ (define-public julia ,@(if (target-aarch64?) `("USE_BLAS64=0") - '()) + `("USE_BLAS64=1")) - "LIBBLAS=-lopenblas" - "LIBBLASNAME=libopenblas" + "LIBBLAS=-lopenblas_ilp64" + "LIBBLASNAME=libopenblas_ilp64" (string-append "UTF8PROC_INC=" (assoc-ref %build-inputs "utf8proc") @@ -513,7 +513,7 @@ (define-public julia ("llvm" ,llvm-julia) ("mbedtls-apache" ,mbedtls-apache) ("mpfr" ,mpfr) - ("openblas" ,openblas) + ("openblas" ,openblas-ilp64) ("openlibm" ,openlibm) ("p7zip" ,p7zip) ("pcre2" ,pcre2) base-commit: 37c2e94cec6cb8b5e0e93e7b6c712c3b187ca5db -- 2.38.1