2011-03-03 08:40:58 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# Open MPI sit class file
|
|
|
|
#
|
2011-03-04 15:35:09 +00:00
|
|
|
# Christoph Niethammer <niethammer@hlrs.de> (C) 2011
|
2011-03-03 08:40:58 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
CATEGORY="mpi"
|
|
|
|
PACKAGE="openmpi"
|
|
|
|
VERSION="1.5.1"
|
|
|
|
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}
|
|
|
|
|
2011-03-04 17:44:08 +00:00
|
|
|
|
|
|
|
# Other interesting configure options:
|
|
|
|
# --enable-mpi-threads
|
|
|
|
# --enable-progress-threads
|
|
|
|
# --with-fca=DIR
|
2011-03-04 15:35:10 +00:00
|
|
|
CONFIGURE_OPTS="
|
|
|
|
--with-devel-headers \
|
|
|
|
--enable-contrib-no-build=vt
|
|
|
|
--enable-shared \
|
|
|
|
-enable-static \
|
|
|
|
"
|