From e70088422512b538996ba436165d8b9ba1b0e046 Mon Sep 17 00:00:00 2001 From: eschnett Date: Mon, 21 Apr 2014 14:26:04 +0000 Subject: Correctly detect IBM Fortran compilers git-svn-id: http://svn.cactuscode.org/projects/ExternalLibraries/LAPACK/trunk@47 c7ba4c71-c2f2-49b2-85d5-cb7b5f04bdfb --- configure.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.sh b/configure.sh index 09090dd..65d30c5 100644 --- a/configure.sh +++ b/configure.sh @@ -135,7 +135,10 @@ then cd ${NAME}/SRC echo "LAPACK: Building..." - if echo ${F77} | grep -i xlf > /dev/null 2>&1; then + #if echo ${F77} | grep -i xlf > /dev/null 2>&1; then + # FIXEDF77FLAGS=-qfixed + #fi + if ${F77} -qversion 2>/dev/null | grep -q 'IBM XL Fortran'; then FIXEDF77FLAGS=-qfixed fi #${F77} ${F77FLAGS} ${FIXEDF77FLAGS} -c *.f ../INSTALL/dlamch.f ../INSTALL/ilaver.f ../INSTALL/lsame.f ../INSTALL/slamch.f -- cgit v1.2.3