From 20c1e4add7b997c731440ac40a883afb2a87af7d Mon Sep 17 00:00:00 2001 From: Christoph Niethammer Date: Mon, 6 Jun 2016 08:16:13 +0000 Subject: [PATCH] Sit class file for Score-P 2.0.2. --- packages/performance/scorep/scorep-2.0.2 | 51 ++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100755 packages/performance/scorep/scorep-2.0.2 diff --git a/packages/performance/scorep/scorep-2.0.2 b/packages/performance/scorep/scorep-2.0.2 new file mode 100755 index 0000000..f2ca942 --- /dev/null +++ b/packages/performance/scorep/scorep-2.0.2 @@ -0,0 +1,51 @@ +#!/bin/sh +# sit class file +# +# Christoph Niethammer (C) 2016 +# + +CATEGORY="performance" +PACKAGE="scorep" +VERSION="2.0.2" +URL="http://www.vi-hps.org/projects/score-p" +INSTALLER="Christoph Niethammer " + + +# 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 \ + " + +CONFIGURE_OPTS+=" --with-nocross-compiler-suite=intel" + +case $PLATFORM in +laki|slc) + enable_gui=0 + ;; +*) + enable_gui=1 + ;; +esac + +if [ $enable_gui = 1 ] ; then + #QT_DIR=$(qtpaths --install-prefix) + #CONFIGURE_OPTS += " --with-qt=$QT_DIR " + CONFIGURE_OPTS+=" --with-gui" +else + CONFIGURE_OPTS+=" --without-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 +