[svn-r10655] Purpose:

Supper 12-byte long double for intel compiler.

Description:
Long double is 12-byte at intel compiler, currently we always set long double to 8-byte.
Change this for intel compiler. This is not the compelete change. H5Tinit.c needs also to be changed to support this.

Solution:

Platforms tested:
Not test yet, since it won't affect other compilers except intel, will test soon.

Misc. update:
This commit is contained in:
MuQun Yang 2005-04-25 11:47:52 -05:00
parent 4260605b14
commit 7946059021

View File

@ -38,7 +38,11 @@ in the file file_io.win32.c and including it on the projects
#define H5_SIZEOF_LONG 4
#if defined __INTEL_COMPILER
#define H5_SIZEOF_LONG_DOUBLE 12
#else
#define H5_SIZEOF_LONG_DOUBLE 8
#endif
#define H5_SIZEOF_OFF_T 4
#define H5_SIZEOF_SHORT 2
#define H5_SIZEOF_SIZE_T 4