diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-09-27 16:44:36 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-09-27 16:52:31 +0300 |
commit | 889c44b553c08f9885a855e1116e9e718901c756 (patch) | |
tree | da430dfc19e2edefd0d49660c80406ca3aece2bc /gnu/packages | |
parent | 1e79e53f871804ac0a3160c0b41132eb53d1f8e9 (diff) | |
download | guix-889c44b553c08f9885a855e1116e9e718901c756.tar.gz guix-889c44b553c08f9885a855e1116e9e718901c756.zip |
gnu: openpmix: Limit to 64bit systems.
* gnu/packages/parallel.scm (openpmix)[supported-systems]: New field.
Change-Id: I63f231c22fb0d0cc46f93dc7ac435a8e41a66739
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/parallel.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/parallel.scm b/gnu/packages/parallel.scm index e89739e3d3..ecaceef81e 100644 --- a/gnu/packages/parallel.scm +++ b/gnu/packages/parallel.scm @@ -678,6 +678,8 @@ single-instruction multiple-data (SIMD) intrinsics.") libraries and programming models with portable and well-defined access to commonly needed services in distributed and parallel computing systems.") (home-page "https://pmix.org/") + ;; configure: WARNING: PMIx does not support 32 bit builds. + (supported-systems %64bit-supported-systems) ;; The provided license is kind of BSD-style but specific. (license (license:fsf-free "https://github.com/openpmix/openpmix?tab=License-1-ov-file#License-1-ov-file")))) |