diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2003-10-29 04:26:30 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2003-10-29 04:26:30 (GMT) |
commit | e272fbe436bad5ab26903ba0f4b4a4bbf9992368 (patch) | |
tree | 9ffa2b320016fba6663725f0c25d3fefd87286a2 /config | |
parent | 45124df0a1a9d2e0e9163c8bf518b084dc56dd10 (diff) | |
download | hdf5-e272fbe436bad5ab26903ba0f4b4a4bbf9992368.zip hdf5-e272fbe436bad5ab26903ba0f4b4a4bbf9992368.tar.gz hdf5-e272fbe436bad5ab26903ba0f4b4a4bbf9992368.tar.bz2 |
[svn-r7781] Purpose:
"bug fix", sort of.
Description:
now that stream-vfd is on by default, it does not work for Tflops.
Set it to no by default.
Platforms tested:
Tested in Tflops.
Misc. update:
Diffstat (limited to 'config')
-rw-r--r-- | config/intel-osf1 | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/config/intel-osf1 b/config/intel-osf1 index 69fc63a..02027bd 100644 --- a/config/intel-osf1 +++ b/config/intel-osf1 @@ -10,8 +10,8 @@ # The default compiler is `cicc' if test "X-" = "X-$CC"; then - CC=cicc - CC_BASENAME=cicc + CC=cicc + CC_BASENAME=cicc fi # The default archiver is `xar' @@ -49,6 +49,9 @@ PROFILE_CPPFLAGS= # Turn off shared lib option. It does not work for TFLOPS yet. enable_shared="${enable_shared:-no}" +# Disable stream-vfd option. It does not work for TFLOPS. +enable_stream_vfd="${enable_stream_vfd:-no}" + # 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'. |