From 30225caaed9eb23a18dd67a81c44bd973e018ed1 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Sat, 30 Oct 2004 23:59:57 -0500 Subject: [svn-r9491] Purpose: Bug fix Description: "Teach" the configure scripts about Intel 7.1 compilers, which don't have _quite_ the same compiler flags Platforms tested: Linux 2.4 (eirene) --- fortran/config/linux-gnulibc1 | 34 +++++++++++++++++++++------------- 1 file changed, 21 insertions(+), 13 deletions(-) diff --git a/fortran/config/linux-gnulibc1 b/fortran/config/linux-gnulibc1 index 5edcbda..bbd2735 100644 --- a/fortran/config/linux-gnulibc1 +++ b/fortran/config/linux-gnulibc1 @@ -39,19 +39,27 @@ if test "X-" = "X-$F9X"; then ;; esac else - # Figure out which compiler we are using: pgf90 or Absoft f95 - RM='rm -f' - tmpfile=/tmp/cmpver.$$ - $F9X -V >$tmpfile - if test -s "$tmpfile"; then - if( grep -s 'Absoft' $tmpfile > /dev/null) then - F9X_BASENAME=f95 - fi - if( grep -s 'pgf90' $tmpfile > /dev/null) then - F9X_BASENAME=pgf90 - fi - fi - $RM $tmpfile + case $F9X in + # The PGI and Intel compilers are automatically detected below + ifc*|ifort*|pgf90*) + ;; + + *) + # Figure out which compiler we are using: pgf90 or Absoft f95 + RM='rm -f' + tmpfile=/tmp/cmpver.$$ + $F9X -V >$tmpfile + if test -s "$tmpfile"; then + if( grep -s 'Absoft' $tmpfile > /dev/null) then + F9X_BASENAME=f95 + fi + if( grep -s 'pgf90' $tmpfile > /dev/null) then + F9X_BASENAME=pgf90 + fi + fi + $RM $tmpfile + ;; + esac fi # -- cgit v0.12