【发布时间】:2014-03-11 09:53:04
【问题描述】:
我正在使用以下
1) VS 2010 C++ 2)调试Win 32 3) 这里的图书馆
http://www.hdfgroup.org/HDF5/release/obtain5.html
基本上我下载了 Windows(32 位)编译器:CMake VS 2010 C、C++、IVF 12、RWDI 并安装了它。我试图在我的 C++ 应用程序中包含一个示例代码并遇到以下情况
***HDF5 library version mismatched error***
The HDF5 header files used to compile this application do not match
the version used by the HDF5 library to which this application is linked.
Data corruption or segmentation faults may occur if the application continues.
This can happen when an application was compiled by one version of HDF5 but
linked with a different version of static or shared HDF5 library.
You should recompile the application or check your shared library related
settings such as 'LD_LIBRARY_PATH'.
You can, at your own risk, disable this warning by setting the environment
variable 'HDF5_DISABLE_VERSION_CHECK' to a value of '1'.
Setting it to 2 or higher will suppress the warning messages totally.
Headers are 1.8.12, library is 1.8.11
SUMMARY OF THE HDF5 CONFIGURATION
=================================
General Information:
-------------------
HDF5 Version: 1.8.11
Configured on:
Configured by: Visual Studio 9 2008
Configure mode: CMAKE 2.8.11.2
Host system: Windows-6.1
Uname information: Windows
Byte sex: little-endian
Libraries:
Installation point: J:/dev/opt/hdf5-1.8.11
【问题讨论】:
标签: c++ runtime-error hdf5