mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00: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))))
|
(if-supported psm2))))
|
||||||
(arguments
|
(arguments
|
||||||
(list #:configure-flags
|
(list #:configure-flags
|
||||||
#~(list "--enable-efa"
|
#~(append (if #$(target-64bit?)
|
||||||
"--enable-verbs")))
|
(list "--enable-efa")
|
||||||
|
'())
|
||||||
|
(list "--enable-verbs"))))
|
||||||
(home-page "https://ofiwg.github.io/libfabric/")
|
(home-page "https://ofiwg.github.io/libfabric/")
|
||||||
(synopsis "Open Fabric Interfaces")
|
(synopsis "Open Fabric Interfaces")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue