Quick modification for TEXT SVN builds of starss.
We need appropriate autotool versions - at least on HLRS systems: * autoconf, automake, libtools * gperf * bison-rofi (bison-2.4.2 seems to work, too)
This commit is contained in:
parent
53b2fbc486
commit
ecdcedeee4
1 changed files with 10 additions and 1 deletions
|
@ -22,7 +22,16 @@ COMPILER_VERSION=${COMPILER_VERSION:=}
|
||||||
# package to build
|
# package to build
|
||||||
CATEGORY=""
|
CATEGORY=""
|
||||||
PACKAGE="StarSs"
|
PACKAGE="StarSs"
|
||||||
VERSION="2.3"
|
VERSION="2.3-r20"
|
||||||
|
SVN_BUILD="yes" # yes|no
|
||||||
|
|
||||||
|
if [ "$SVN_BUILD" == "yes" ]; then
|
||||||
|
module use /opt/amtopt/autotools/modulefiles
|
||||||
|
module use ~/modulefiles # we should build a complete toolstack for AMT...
|
||||||
|
module load local
|
||||||
|
module load tools/gperf
|
||||||
|
module load tools/bison-rofi # bison-2.4.2 seems to work, too
|
||||||
|
fi
|
||||||
|
|
||||||
# add a descriptor at the end of the installation path e.g. for special config options etc.
|
# add a descriptor at the end of the installation path e.g. for special config options etc.
|
||||||
PACKAGE_DESCRIPTOR=${PACKAGE_DESCRIPTOR:+-$PACKAGE_DESCRIPTOR}
|
PACKAGE_DESCRIPTOR=${PACKAGE_DESCRIPTOR:+-$PACKAGE_DESCRIPTOR}
|
||||||
|
|
Loading…
Reference in a new issue