diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2004-07-29 21:08:16 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2004-07-29 21:08:16 (GMT) |
commit | abf5d5cf60cea890a9efb1260abfeecb14cbc655 (patch) | |
tree | 65c30fb3470854b3c5335c25ed833af1f35b50b9 /config | |
parent | d60d3679301d5587b077ae47eab091fdbb96a28d (diff) | |
download | hdf5-abf5d5cf60cea890a9efb1260abfeecb14cbc655.zip hdf5-abf5d5cf60cea890a9efb1260abfeecb14cbc655.tar.gz hdf5-abf5d5cf60cea890a9efb1260abfeecb14cbc655.tar.bz2 |
[svn-r8966] Purpose: Maintenance
Description: Added support for Absoft Fortran compiler
Solution: Modified configuration file to check which Fortran compiler is used
and set appropriate flags.
Platforms tested: verbena with pgf90 and Absoft f95 compilers
Misc. update:
Diffstat (limited to 'config')
-rw-r--r-- | config/linux-gnulibc1 | 60 |
1 files changed, 49 insertions, 11 deletions
diff --git a/config/linux-gnulibc1 b/config/linux-gnulibc1 index d2436db..43a48f2 100644 --- a/config/linux-gnulibc1 +++ b/config/linux-gnulibc1 @@ -18,6 +18,26 @@ NOFP=${NOFP:=-fomit-frame-pointer} # Figure out compiler flags . $srcdir/config/gnu-flags + +# 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 + CFLAGS="$CFLAGS -DH5_ABSOFT" + fi + if( grep -s 'pgf90' $tmpfile > /dev/null) + then + F9X_BASENAME=pgf90 + fi + fi + +$RM $tmpfile + # The default Fortran 90 compiler # @@ -36,20 +56,38 @@ HID_T='SELECTED_INT_KIND(R_INTEGER)' SIZE_T='SELECTED_INT_KIND(R_INTEGER)' OBJECT_NAMELEN_DEFAULT_F=-1 -if test -z "$F9X"; then - F9X=pgf90 -fi -if test -z "$f9x_flags_set"; then - F9XSUFFIXFLAG="" - FSEARCH_DIRS="" - FFLAGS="$FFLAGS" - DEBUG_FFLAGS="" - PROD_FFLAGS="" - PROFILE_FFLAGS="" - f9x_flags_set=yes +if test "X-" = "X-$F9X"; then + F9X=pgf90 + F9X_BASENAME=pgf90 fi +case $F9X_BASENAME in + pgf90) + F9XSUFFIXFLAG="" + FFLAGS="$FFLAGS" + FSEARCH_DIRS="" + DEBUG_FFLAGS="" + PROD_FFLAGS="" + PROFILE_FFLAGS="" + f9x_flags_set=yes + ;; +# +# Assume Absoft compiler +# + f95) + F9XSUFFIXFLAG="" +# We force compiler to use upper case for external names +# (just in case since this should be a default EIP) + FFLAGS="$FFLAGS -YEXT_NAMES=UCS" + FSEARCH_DIRS="" + DEBUG_FFLAGS="-O" + PROD_FFLAGS="-O" + PROFILE_FFLAGS="-O" + f9x_flags_set=yes + ;; + +esac # The default C++ compiler # The default compiler is `g++'. |