Fixed extrae package removing -dynamic from all platforms except Cray.
This commit is contained in:
parent
1a5ac496b9
commit
ca76467cc4
1 changed files with 5 additions and 1 deletions
|
@ -19,7 +19,6 @@ P=${PACKAGE}-${VERSION}
|
||||||
enable_papi=${enable_papi:=1}
|
enable_papi=${enable_papi:=1}
|
||||||
|
|
||||||
MAKEOPTS="-j1"
|
MAKEOPTS="-j1"
|
||||||
export CFLAGS="-dynamic"
|
|
||||||
|
|
||||||
# Other interesting configure options:
|
# Other interesting configure options:
|
||||||
#--disable-doc \
|
#--disable-doc \
|
||||||
|
@ -31,6 +30,11 @@ CONFIGURE_OPTS="\
|
||||||
--without-unwind \
|
--without-unwind \
|
||||||
--without-dyninst \
|
--without-dyninst \
|
||||||
"
|
"
|
||||||
|
case $PLATFORM in
|
||||||
|
hornet|hazelhen)
|
||||||
|
CFLAGS+=" -dynamic"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
|
||||||
# use PAPI
|
# use PAPI
|
||||||
|
|
Loading…
Reference in a new issue