mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-21 01:04:10 +08:00
db31594e68
Bug fix. Description: C++ testhdf5 failed when it tried to inspect the size of a file via the HDstat call. The reason was that the CFLAGS has -D_LARGE_FILES hardset in it while the CXXFLAGS does not. So, C is using an off_t that is 8 bytes while C++ is using off_t as 4 bytes. C is using a version of 64bits stat/off_t/etc while C++ uses the 32 bits version. Thus a failure. Solution: Added -D_LARGE_FILES to $CXXFLAGES so that both C and C++ are using the same version of stat/off_t/etc. Platforms tested: Tested in Copper only, both 32 and 64 bits since the changes affected the AIX platform only. |
||
---|---|---|
.. | ||
site-specific | ||
BlankForm | ||
commence.am | ||
conclude.am | ||
craynv | ||
dec-flags | ||
dec-osf4.x | ||
dec-osf5.x | ||
examples.am | ||
freebsd | ||
gnu-fflags | ||
gnu-flags | ||
hpux9.03 | ||
hpux10.20 | ||
hpux11.00 | ||
i386-pc-cygwin32 | ||
i686-pc-cygwin | ||
ia64-linux-gnu | ||
intel-fflags | ||
intel-flags | ||
intel-osf1 | ||
irix5.x | ||
irix6.x | ||
linux-gnu | ||
linux-gnuaout | ||
linux-gnulibc1 | ||
linux-gnulibc2 | ||
lt_vers.am | ||
Makefile.am.blank | ||
mpich | ||
nec-superux14.1 | ||
pgi-fflags | ||
pgi-flags | ||
powerpc-apple | ||
powerpc-ibm-aix4.x | ||
powerpc-ibm-aix5.x | ||
rs6000-ibm-aix4.x | ||
solaris2.x | ||
sv1-cray | ||
unicos | ||
unicos10.0.X | ||
unicosmk | ||
unicosmk2.0.5.X | ||
unicosmk2.0.6.X | ||
unicosmk2.0.X | ||
x86_64-redstorm-linux-gnu |