diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2001-07-13 22:56:53 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2001-07-13 22:56:53 (GMT) |
commit | 6e7e3dc8c7ddebf88cacf3c2d4495eb80a25feba (patch) | |
tree | 929b0ad32c8080cca8aec38b644942c222fa3d72 /fortran | |
parent | 0d515853c9cfd563338bf0549026234d0dd174b3 (diff) | |
download | hdf5-6e7e3dc8c7ddebf88cacf3c2d4495eb80a25feba.zip hdf5-6e7e3dc8c7ddebf88cacf3c2d4495eb80a25feba.tar.gz hdf5-6e7e3dc8c7ddebf88cacf3c2d4495eb80a25feba.tar.bz2 |
[svn-r4208]
Purpose:
F90 port to HPUX 10.20
Description:
Added F90 support for HPUX 10.20
Platforms tested:
HPUX 10.20 (sangamon)
Diffstat (limited to 'fortran')
-rw-r--r-- | fortran/config/hpux10.20 | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/fortran/config/hpux10.20 b/fortran/config/hpux10.20 index 0b39f3c..5e35d3b 100644 --- a/fortran/config/hpux10.20 +++ b/fortran/config/hpux10.20 @@ -34,3 +34,33 @@ case "X-$CC" in PROFILE_CPPFLAGS="-Ae" ;; esac + +# The default Fortran 90 compiler + +# +# HDF5 integers +# +# R_LARGE is the number of digits for the bigest integer supported. +# R_INTEGER is the number of digits in INTEGER +# +# (for the HPUX architechture) +# +R_LARGE=18 +R_INTEGER=9 +HSIZE_T='SELECTED_INT_KIND(R_LARGE)' +HSSIZE_T='SELECTED_INT_KIND(R_LARGE)' +HID_T='SELECTED_INT_KIND(R_INTEGER)' +SIZE_T='SELECTED_INT_KIND(R_INTEGER)' +OBJECT_NAMELEN_DEFAULT_F=-1 + +if test "X-" = "X-$F9X"; then + F9X=f90 +fi + +if test "X-" = "X-$f9x_flags_set"; then + FFLAGS="-O" + DEBUG_FFLAGS="-O" + PROD_FFLAGS="-O" + PROFILE_FFLAGS="-O" + f9x_flags_set=yes +fi |