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:
Efraim Flashner 2024-09-27 12:02:57 +03:00
parent 13b2b983ee
commit 1e79e53f87
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -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