diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2005-04-26 15:53:33 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2005-04-26 15:53:33 (GMT) |
commit | c1e2a4b00f9d07b49ce65e9382d8dd2f5debdbc9 (patch) | |
tree | 993eda56006d40297be503e81ff1b12fcd5fda88 /windows/src | |
parent | 8ab8a398171e4296489340601b14c4a4b66c53a4 (diff) | |
download | hdf5-c1e2a4b00f9d07b49ce65e9382d8dd2f5debdbc9.zip hdf5-c1e2a4b00f9d07b49ce65e9382d8dd2f5debdbc9.tar.gz hdf5-c1e2a4b00f9d07b49ce65e9382d8dd2f5debdbc9.tar.bz2 |
[svn-r10665] Purpose:
One dtransform test failed with Intel 8.1 C++ compiler.
Turned off the test with assertion of a macro.
Description:
Solution:
Platforms tested:
Intel C++ 8.1 on .Net 2003.
Misc. update:
Diffstat (limited to 'windows/src')
-rwxr-xr-x | windows/src/H5pubconf.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/windows/src/H5pubconf.h b/windows/src/H5pubconf.h index 2aae5af..6e2bf6a 100755 --- a/windows/src/H5pubconf.h +++ b/windows/src/H5pubconf.h @@ -38,11 +38,12 @@ in the file file_io.win32.c and including it on the projects #define H5_SIZEOF_LONG 4 -#if defined __INTEL_COMPILER +/*#if defined __INTEL_COMPILER #define H5_SIZEOF_LONG_DOUBLE 12 -#else +#else*/ + #define H5_SIZEOF_LONG_DOUBLE 8 -#endif +/*#endif*/ #define H5_SIZEOF_OFF_T 4 #define H5_SIZEOF_SHORT 2 #define H5_SIZEOF_SIZE_T 4 @@ -100,14 +101,14 @@ in the file file_io.win32.c and including it on the projects #define H5_HAVE_FUNCTION 1 #define H5_ULLONG_TO_FP_CAST_WORKS 1 #if defined __INTEL_COMPILER -#undef H5_LLONG_TO_FP_CAST_WORKS +#define H5_LLONG_TO_FP_CAST_BROKEN #else -#define H5_LLONG_TO_FP_CAST_WORKS 1 +#undef H5_LLONG_TO_FP_CAST_BROKEN #endif #else #undef H5_HAVE_FUNCTION #undef H5_ULLONG_TO_FP_CAST_WORKS -#define H5_LLONG_TO_FP_CAST_WORKS 1 +#undef H5_LLONG_TO_FP_CAST_BROKEN #endif #define H5_FC_FUNC_(name, NAME) NAME |