32 lines
640 B
Bash
Executable file
32 lines
640 B
Bash
Executable file
#!/bin/sh
|
|
# sit class file
|
|
#
|
|
# Christoph Niethammer <niethammer@hlrs.de> (C) 2013
|
|
#
|
|
|
|
CATEGORY="compiler"
|
|
PACKAGE="mcxx"
|
|
VERSION="1.99.0-2013-04-25"
|
|
URL="http://nanos.ac.upc.edu/content/mercurium-compiler"
|
|
INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
|
|
|
|
# Archive A and package name P
|
|
A=${PACKAGE}-${VERSION}.tar.gz
|
|
P=${PACKAGE}-${VERSION%%-*} # remove date suffix starting from the first '-'
|
|
|
|
|
|
# build with debugging symbols (0|1)
|
|
enable_debug=${enable_debug:=0}
|
|
|
|
|
|
# Other interesting configure options:
|
|
CONFIGURE_OPTS=" \
|
|
--enable-fortran \
|
|
--enable-ompss \
|
|
--with-nanox=$NANOX_HOME \
|
|
"
|
|
|
|
src_pretest() {
|
|
/bin/true
|
|
}
|
|
|