[svn-r13324] Changed the default Fortran compiler for gcc from pgf90 to g95.

This commit is contained in:
Albert Cheng 2007-02-17 14:36:53 -05:00
parent 68541fee67
commit 1a2ddc0966

View File

@ -35,10 +35,14 @@ fi
# Figure out Intel C compiler flags
. $srcdir/config/intel-flags
# The default Fortran 90 compiler
# Use default Fortran 90 compiler according to what C compiler is used.
if test "X-" = "X-$FC"; then
case $CC_BASENAME in
gcc*|pgcc*)
gcc*)
FC=g95
FC_BASENAME=g95
;;
pgcc*)
FC=pgf90
FC_BASENAME=pgf90
;;