diff options
author | Paul Harten <pharten@ncsa.uiuc.edu> | 1998-05-04 18:54:36 (GMT) |
---|---|---|
committer | Paul Harten <pharten@ncsa.uiuc.edu> | 1998-05-04 18:54:36 (GMT) |
commit | 9b0f3f2baa6a6e0626137147b656d32528f5a614 (patch) | |
tree | 2e13ecde3e67bf820614dbf303ea894420e5e7a8 /config | |
parent | 05eeb4d25b7af1135645e1b113c229badfca55c4 (diff) | |
download | hdf5-9b0f3f2baa6a6e0626137147b656d32528f5a614.zip hdf5-9b0f3f2baa6a6e0626137147b656d32528f5a614.tar.gz hdf5-9b0f3f2baa6a6e0626137147b656d32528f5a614.tar.bz2 |
[svn-r385] Purpose:
Bug fix
Problem:
On the ASCI Red machine, the configure step is executed from the platform
cross compiler, so that the configure test for "long long int" format support
was inconclusive.
Solution:
It was necessary to uncomment the line
#hdf5_cv_printf_ll=${hdf5_cv_printf_ll='ll'}
in config/intel-osf1 to force "long long int" format support.
Platform tested:
TFLOPS Application server, Intel TFLOPS
Diffstat (limited to 'config')
-rw-r--r-- | config/intel-osf1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/intel-osf1 b/config/intel-osf1 index 840afd4..f110118 100644 --- a/config/intel-osf1 +++ b/config/intel-osf1 @@ -49,4 +49,4 @@ PROFILE_CPPFLAGS= # Set this to the width required by printf() to print type `long # long'. For instance, if the format would be `%lld' then set it to # `ll' or if the format would be `%qd' set it to `q'. -#hdf5_cv_printf_ll=${hdf5_cv_printf_ll='ll'} +hdf5_cv_printf_ll=${hdf5_cv_printf_ll='ll'} |