Sit class file for Score-P 2.0-beta1.
This commit is contained in:
parent
af5b68c36e
commit
7228bdc220
1 changed files with 39 additions and 0 deletions
39
packages/performance/scorep/scorep-2.0-beta1
Executable file
39
packages/performance/scorep/scorep-2.0-beta1
Executable file
|
@ -0,0 +1,39 @@
|
||||||
|
#!/bin/sh
|
||||||
|
# sit class file
|
||||||
|
#
|
||||||
|
# Christoph Niethammer <niethammer@hlrs.de> (C) 2015
|
||||||
|
#
|
||||||
|
|
||||||
|
CATEGORY="performance"
|
||||||
|
PACKAGE="scorep"
|
||||||
|
VERSION="2.0-beta1"
|
||||||
|
URL="http://www.vi-hps.org/projects/score-p"
|
||||||
|
INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
|
||||||
|
|
||||||
|
|
||||||
|
# Archive A and package name P
|
||||||
|
A="${PACKAGE}-${VERSION}.tar.gz"
|
||||||
|
P="${PACKAGE}-${VERSION}"
|
||||||
|
|
||||||
|
|
||||||
|
# Other interesting configure options:
|
||||||
|
#--enable-sampling \
|
||||||
|
CONFIGURE_OPTS=" \
|
||||||
|
--enable-shared \
|
||||||
|
--enable-static \
|
||||||
|
"
|
||||||
|
|
||||||
|
if [ $PLATFORM == "laki" ] ; then
|
||||||
|
#QT_DIR=$(qtpaths --install-prefix)
|
||||||
|
#CONFIGURE_OPTS += " --with-qt=$QT_DIR "
|
||||||
|
CONFIGURE_OPTS+=" --without-gui"
|
||||||
|
else
|
||||||
|
CONFIGURE_OPTS+=" --with-gui"
|
||||||
|
fi
|
||||||
|
|
||||||
|
PAPI_BASE=$(dirname $(dirname $(which papi_avail)))
|
||||||
|
if [ ! -z $PAPI_BASE ]
|
||||||
|
then
|
||||||
|
CONFIGURE_OPTS+=" --with-papi-header=$PAPI_BASE/include --with-papi-lib=$PAPI_BASE/lib "
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in a new issue