Displaying 1 result from an estimated 1 matches for "gcc_fortran_compil".
Did you mean:
gcc_fortran_compiler
2011 Nov 10
1
assistance building R on RHEL5
...;== gcc44-gfortran added
F90_compilers="f90 xlf90 pgf90 pghpf epcf90"
case "${host_os}" in
hpux*)
F77_compilers="g77 fort77 f77 xlf frt pgf77 cf77 fl32 af77" ;;
*)
F77_compilers="g77 f77 xlf frt pgf77 cf77 fort77 fl32 af77" ;;
esac
GCC_Fortran_compiler=
if test "${GCC}" = yes; then
case "${CC_VERSION}" in
3.*) GCC_Fortran_compiler=g77 ;;
4.*) GCC_Fortran_compiler=gcc44 ;; # <== updated to gcc44
esac
fi
thanks in advance -
-mike