diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2017-11-07 20:15:47 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2017-11-07 20:41:05 +0200 |
commit | b516b780022010d32c5746adde19c3af20ee74a3 (patch) | |
tree | d4890e6876fb2025a994d88b163ff62240788e52 /gnu/packages/linux.scm | |
parent | 174807b9a45d70b70c8055ea27b0cd21195a652c (diff) | |
download | guix-b516b780022010d32c5746adde19c3af20ee74a3.tar guix-b516b780022010d32c5746adde19c3af20ee74a3.tar.gz |
gnu: psm: Limit supported systems.
* gnu/packages/linux.scm (psm)[supported-systems]: New field, limit to
i686-linux and x86_64-linux.
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r-- | gnu/packages/linux.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 010475a7da..5398906de4 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -4451,4 +4451,6 @@ libraries, which are often integrated directly into libfabric.") communications interface for the True Scale family of products. PSM users are enabled with mechanisms necessary to implement higher level communications interfaces in parallel environments.") + ;; Only Intel-compatable processors are supported. + (supported-systems '("i686-linux" "x86_64-linux")) (license (list license:bsd-2 license:gpl2)))) ;dual |