mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05: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 @@ (define-public libfabric
|
|||
(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…
Reference in a new issue