summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElena Pourmal <epourmal@hdfgroup.org>2001-07-13 22:20:11 (GMT)
committerElena Pourmal <epourmal@hdfgroup.org>2001-07-13 22:20:11 (GMT)
commit031fdc2f0af20690039e75c475cb4f9b31ac182b (patch)
tree81e3e6ce3f424f2f800cc6f451156f334e03ba63
parenteb21050bcf266c8d8fd501345b66ee0387e10993 (diff)
downloadhdf5-031fdc2f0af20690039e75c475cb4f9b31ac182b.zip
hdf5-031fdc2f0af20690039e75c475cb4f9b31ac182b.tar.gz
hdf5-031fdc2f0af20690039e75c475cb4f9b31ac182b.tar.bz2
[svn-r4207]
Purpose: hpux10.20 F90 port Description: Added F90 support for HPUX 10.20 Platforms tested: HpUX 10.20 (sangamon)
-rw-r--r--fortran/config/hpux10.2030
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