[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)
This commit is contained in:
Quincey Koziol 2004-10-30 23:59:57 -05:00
parent eec27da1df
commit c9874681a6
3 changed files with 23 additions and 15 deletions

View File

@ -15,7 +15,7 @@ if test X = "X$f9x_flags_set"; then
f9x_version="`$F9X $FFLAGS -V 2>&1 |grep '^Intel'`"
if test X != "X$f9x_version"; then
f9x_vendor=ifort
f9x_version="`$F9X $FFLAGS -v 2>&1 |sed 's/Version \([-a-z0-9\.\-]*\).*/\1/'`"
f9x_version="`echo $f9x_version |sed 's/.*Version \([-a-z0-9\.\-]*\).*/\1/'`"
echo "compiler '$F9X' is Intel $f9x_vendor-$f9x_version"
# Some version numbers

View File

@ -15,7 +15,7 @@ if test X = "X$cc_flags_set"; then
cc_version="`$CC $CFLAGS -V 2>&1 |grep '^Intel'`"
if test X != "X$cc_version"; then
cc_vendor=icc
cc_version="`$CC $CFLAGS --version 2>&1`"
cc_version=`echo $cc_version |sed 's/.*Version \([-a-z0-9\.\-]*\).*/\1/'`
echo "compiler '$CC' is Intel $cc_vendor-$cc_version"
# Some version numbers

View File

@ -38,19 +38,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
#