diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-06-01 10:49:13 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-06-01 11:14:03 +0300 |
commit | 872e1434f1abed2ab75d011b0792d99575567efa (patch) | |
tree | f0921ec8e4fa9f6cd24770df70a6d884a1437b9d | |
parent | 93804e978fc89070470a5df580ee1187ac6145ea (diff) | |
download | guix-872e1434f1abed2ab75d011b0792d99575567efa.tar.gz guix-872e1434f1abed2ab75d011b0792d99575567efa.zip |
gnu: openblas-ilp64: Add powerpc64le-linux as a supported system.
* gnu/packages/maths.scm (openblas-ilp64)[supported-systems]: Add
powerpc64le-linux.
-rw-r--r-- | gnu/packages/maths.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 1b34c6e314..663eb0cc10 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -8,7 +8,7 @@ ;;; Copyright © 2015–2023 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com> ;;; Copyright © 2015, 2018 Mark H Weaver <mhw@netris.org> -;;; Copyright © 2015-2022 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2015-2023 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2015 Fabian Harfert <fhmgufs@web.de> ;;; Copyright © 2016 Roel Janssen <roel@gnu.org> ;;; Copyright © 2016, 2018, 2020, 2021 Kei Kebreau <kkebreau@posteo.net> @@ -4645,7 +4645,8 @@ parts of it.") (define-public openblas-ilp64 (package/inherit openblas (name "openblas-ilp64") - (supported-systems '("x86_64-linux" "aarch64-linux" "mips64el-linux")) + (supported-systems '("x86_64-linux" "aarch64-linux" "mips64el-linux" + "powerpc64le-linux")) (arguments (substitute-keyword-arguments (package-arguments openblas) ((#:make-flags flags #~'()) |