Added Sit class file for Open MPI 4.0.3rc3
This commit is contained in:
parent
b6049c4e44
commit
c6290aae30
1 changed files with 38 additions and 0 deletions
38
packages/mpi/openmpi/openmpi-4.0.3rc3
Executable file
38
packages/mpi/openmpi/openmpi-4.0.3rc3
Executable file
|
@ -0,0 +1,38 @@
|
||||||
|
#!/bin/sh
|
||||||
|
# sit class file
|
||||||
|
#
|
||||||
|
# Christoph Niethammer <niethammer@hlrs.de> (C) 2020
|
||||||
|
#
|
||||||
|
|
||||||
|
CATEGORY="mpi"
|
||||||
|
PACKAGE="openmpi"
|
||||||
|
VERSION="4.0.3rc3"
|
||||||
|
URL="http://www.open-mpi.org"
|
||||||
|
INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
|
||||||
|
|
||||||
|
# Archive A and package name P
|
||||||
|
A="$PACKAGE-$VERSION.tar.bz2"
|
||||||
|
P="$PACKAGE-$VERSION"
|
||||||
|
HASH_MD5=
|
||||||
|
HASH_SHA1=
|
||||||
|
|
||||||
|
# Other interesting configure options:
|
||||||
|
# --enable-mpi-threads
|
||||||
|
# --enable-progress-threads
|
||||||
|
# --enable-mpi-fortran=usempif08 \
|
||||||
|
# --with-devel-headers \
|
||||||
|
# --enable-contrib-no-build=vt
|
||||||
|
CONFIGURE_OPTS="
|
||||||
|
--enable-shared \
|
||||||
|
--enable-static \
|
||||||
|
--enable-mpi-thread-multiple \
|
||||||
|
"
|
||||||
|
|
||||||
|
if [ ! -z "$UCX_DIR" ]
|
||||||
|
then
|
||||||
|
CONFIGURE_OPTS+=" --with-ucx=$UCX_DIR"
|
||||||
|
fi
|
||||||
|
|
||||||
|
src_pretest() {
|
||||||
|
make check
|
||||||
|
}
|
Loading…
Reference in a new issue