mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-07 11:29:59 +01:00
gnu: libfabric: Fix building on 32-bit systems.
* gnu/packages/linux.scm (libfabric)[arguments]: Adjust configure-flags to only enable features supported on those architectures. Change-Id: Iddb55745860e2b04f2533b453f94a4f37510194c
This commit is contained in:
parent
13b2b983ee
commit
1e79e53f87
1 changed files with 4 additions and 2 deletions
|
@ -8976,8 +8976,10 @@ comparing system environments.")
|
|||
(if-supported psm2))))
|
||||
(arguments
|
||||
(list #:configure-flags
|
||||
#~(list "--enable-efa"
|
||||
"--enable-verbs")))
|
||||
#~(append (if #$(target-64bit?)
|
||||
(list "--enable-efa")
|
||||
'())
|
||||
(list "--enable-verbs"))))
|
||||
(home-page "https://ofiwg.github.io/libfabric/")
|
||||
(synopsis "Open Fabric Interfaces")
|
||||
(description
|
||||
|
|
Loading…
Add table
Reference in a new issue