Sit class file for extrae 3.6.1
This commit is contained in:
parent
1afff42278
commit
b11d30399f
1 changed files with 62 additions and 0 deletions
62
packages/performance/extrae/extrae-3.6.1
Normal file
62
packages/performance/extrae/extrae-3.6.1
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
#!/bin/sh
|
||||||
|
# sit class file
|
||||||
|
#
|
||||||
|
# Christoph Niethammer <niethammer@hlrs.de> (C) 2018
|
||||||
|
#
|
||||||
|
|
||||||
|
CATEGORY="performance"
|
||||||
|
PACKAGE="extrae"
|
||||||
|
VERSION="3.6.1"
|
||||||
|
URL="http://www.bsc.es/computer-sciences/extrae"
|
||||||
|
INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
|
||||||
|
|
||||||
|
# Archive A and package name P
|
||||||
|
A=${PACKAGE}-${VERSION}-src.tar.bz2
|
||||||
|
P=${PACKAGE}-${VERSION}
|
||||||
|
|
||||||
|
enable_papi=${enable_papi:=1}
|
||||||
|
|
||||||
|
# Other interesting configure options:
|
||||||
|
#--disable-doc \
|
||||||
|
sit_info "MPI_DIR $MPI_DIR"
|
||||||
|
CONFIGURE_OPTS="\
|
||||||
|
--with-mpi=$MPI_DIR \
|
||||||
|
--with-mpi-headers=${MPI_INC_DIR:=$MPI_DIR/lib}
|
||||||
|
--with-mpi-libs=${MPI_LIB_DIR:=$MPI_DIR/lib}
|
||||||
|
--enable-sampling
|
||||||
|
--enable-posix-clock \
|
||||||
|
--without-unwind \
|
||||||
|
--without-dyninst \
|
||||||
|
"
|
||||||
|
case $PLATFORM in
|
||||||
|
hornet|hazelhen)
|
||||||
|
CFLAGS+=" -dynamic"
|
||||||
|
LDFLAGS+=" -dynamic -lrt"
|
||||||
|
CONFIGURE_OPTS+=" --disable-xmltest"
|
||||||
|
CONFIGURE_OPTS+=" --with-libgomp-version=4.9"
|
||||||
|
CONFIGURE_OPTS+=" --enable-check-cray-xt"
|
||||||
|
CONFIGURE_OPTS+=" --build=x86_64-pc-linux"
|
||||||
|
CONFIGURE_OPTS+=" --host=x86_64-pc-linux"
|
||||||
|
;;
|
||||||
|
laki)
|
||||||
|
if [ $COMPILER == "intel" ] ; then
|
||||||
|
CONFIGURE_OPTS+=" --with-libgomp-version=4.2"
|
||||||
|
fi
|
||||||
|
esac
|
||||||
|
|
||||||
|
|
||||||
|
# use PAPI
|
||||||
|
if [ $enable_papi != 0 ] ; then
|
||||||
|
PAPI_DIR=$(dirname $(dirname $(which papi_avail)))
|
||||||
|
CONFIGURE_OPTS="$CONFIGURE_OPTS --with-papi=$PAPI_DIR"
|
||||||
|
else
|
||||||
|
CONFIGURE_OPTS="$CONFIGURE_OPTS --without-papi"
|
||||||
|
fi
|
||||||
|
|
||||||
|
BUILDDIR="${SRCDIR}"
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
mkdir -p $PREFIX
|
||||||
|
make install || sit_fail "Installation failed"
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue