diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2001-07-18 00:34:10 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2001-07-18 00:34:10 (GMT) |
commit | 3d644774c313c93007e83aaa12f4c10b7ee9df7c (patch) | |
tree | db2f343c2288c396ebda9a274beb9a30646f3df6 /fortran | |
parent | 05e81f551dc04b7385672e324e9ec2dffd57fbab (diff) | |
download | hdf5-3d644774c313c93007e83aaa12f4c10b7ee9df7c.zip hdf5-3d644774c313c93007e83aaa12f4c10b7ee9df7c.tar.gz hdf5-3d644774c313c93007e83aaa12f4c10b7ee9df7c.tar.bz2 |
[svn-r4234]
Purpose:
Bug fix
Description:
Last time by mistake I commited a wrong file
Solution:
Always check files into CVS from the directory where actual tests run.
Platforms tested:
gondolin
Diffstat (limited to 'fortran')
-rw-r--r-- | fortran/config/dec-flags | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/fortran/config/dec-flags b/fortran/config/dec-flags index 7e3eaf8..186e6fb 100644 --- a/fortran/config/dec-flags +++ b/fortran/config/dec-flags @@ -63,3 +63,33 @@ if test X = "X$cc_flags_set"; then cc_vendor= cc_version= fi + +# 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 Digital UNIX 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_LARGE)' +OBJECT_NAMELEN_DEFAULT_F=-1 + +if test "X-" = "X-$F9X"; then + F9X=f90 +fi + +if test "X-" = "X-$f9x_flags_set"; then + FFLAGS="-Olimit 2048 -std1" + DEBUG_FFLAGS="-Olimit 2048 -std1" + PROD_FFLAGS="-Olimit 2048 -std1" + PROFILE_FFLAGS="-Olimit 2048 -std1" + f9x_flags_set=yes +fi |