Skip to content
Snippets Groups Projects
Commit f8bc8c97 authored by Robert Klöfkorn's avatar Robert Klöfkorn
Browse files

added ibm as option

git-svn-id: https://dune.mathematik.uni-freiburg.de/svn/alugrid/trunk@289 0d966ed9-3843-0410-af09-ebfb50bd7c74
parent 3a2568b3
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,7 @@ usage () {
echo " -i, --intel use intel compiler"
echo " -g, --gnu use gnu compiler (default)"
echo " -m, --mpi use mpiCC"
echo " -b, --ibm use mpCC, the ibm compiler"
echo " --opts=FILE use compiler-options from FILE"
echo " -d, --debug switch debug-opts on"
echo " -n, --nodebug switch debug-opts off"
......@@ -45,6 +46,7 @@ for OPT in $* ; do
-i|--intel) . ./icc.opts ; COMPSET=1 ;;
-g|--gnu) . ./gcc.opts ; COMPSET=1 ;;
-m|--mpi) . ./mpi.opts ; COMPSET=1 ;;
-b|--ibm) . ./ibm.opts ; COMPSET=1 ;;
--opts=*)
if [ -r $arg ] ; then
echo "reading options from $arg..."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment