civodul pushed a commit to branch master
in repository guix.
commit eaa52b5baa8fbb26a79890561d0c40344d1e1bf3
Author: Ludovic Courtès <[email protected]>
Date: Fri Nov 8 17:51:31 2019 +0100
gnu: openmpi: Pass explicit "--with-*" configure flags.
* gnu/packages/mpi.scm (openmpi)[arguments]: Pass "--with-ucx",
"--with-psm", and "--with-psm2".
---
gnu/packages/mpi.scm | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/gnu/packages/mpi.scm b/gnu/packages/mpi.scm
index f66a304..172fe9e 100644
--- a/gnu/packages/mpi.scm
+++ b/gnu/packages/mpi.scm
@@ -204,6 +204,12 @@ bind processes, and much more.")
"--with-hwloc=external"
"--with-libevent"
+ ;; Make sure ./configure fails if one of these is
+ ;; missing.
+ "--with-ucx"
+ "--with-psm"
+ "--with-psm2"
+
;; InfiniBand support
"--enable-openib-control-hdr-padding"
"--enable-openib-dynamic-sl"