Fixed ScoreP-6.0 sit class file: Added support for Intel compiler.

This commit is contained in:
Christoph Niethammer 2020-03-17 11:21:38 +00:00
parent a09156427b
commit da9d342fb2

View file

@ -6,7 +6,7 @@
CATEGORY="performance" CATEGORY="performance"
PACKAGE="scorep" PACKAGE="scorep"
VERSION="3.1" VERSION="6.0"
URL="http://www.vi-hps.org/projects/score-p" URL="http://www.vi-hps.org/projects/score-p"
INSTALLER="Jose Gracia <gracia@hlrs.de>" INSTALLER="Jose Gracia <gracia@hlrs.de>"
@ -50,8 +50,14 @@ PAPI_BASE=$(dirname $(dirname $(which papi_avail)))
if [ ! -z $PAPI_BASE ] if [ ! -z $PAPI_BASE ]
then then
CONFIGURE_OPTS+=" --with-papi-header=$PAPI_BASE/include --with-papi-lib=$PAPI_BASE/lib " CONFIGURE_OPTS+=" --with-papi-header=$PAPI_BASE/include --with-papi-lib=$PAPI_BASE/lib "
case $COMPILER in
intel)
CONFIGURE_OPTS+=" --with-nocross-compiler-suite=intel"
;;
esac
fi fi
src_prepare() { src_prepare() {
case $PLATFORM in case $PLATFORM in
hazelhen) hazelhen)