guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/37: gnu: openblas: Fix building on riscv64-linux.


From: guix-commits
Subject: 08/37: gnu: openblas: Fix building on riscv64-linux.
Date: Tue, 2 Nov 2021 03:27:09 -0400 (EDT)

efraim pushed a commit to branch wip-riscv
in repository guix.

commit e4f77a3d345223a8bea0eab9f3c23fc74912e28d
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Aug 4 09:46:26 2021 +0300

    gnu: openblas: Fix building on riscv64-linux.
    
    * gnu/packages/maths.scm (openblas)[arguments]: Adjust make-flags on
    riscv64-linux to target the correct architecture when building for
    riscv64-linux.
---
 gnu/packages/maths.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index c7a3b67..036cbb9 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -4459,6 +4459,8 @@ parts of it.")
                   ;; Failed to detect CPU.
                   ((string-prefix? "armhf" system)
                    '("TARGET=ARMV7"))
+                  ((string-prefix? "riscv64" system)
+                   '("TARGET=RISCV64_GENERIC"))
                   (else '()))))
        ;; no configure script
        #:phases



reply via email to

[Prev in Thread] Current Thread [Next in Thread]