diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2019-07-09 21:30:27 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2019-07-09 21:30:27 (GMT) |
commit | eb0d1e4e8eff2d401f593e7f01194f8f323cbfca (patch) | |
tree | e3bc292e7fcd46fd0e451eccd05c10b971cf67df | |
parent | c33f2cbf18b4cc0aafedfe2d1cc29ed7730c91f6 (diff) | |
download | hdf5-eb0d1e4e8eff2d401f593e7f01194f8f323cbfca.zip hdf5-eb0d1e4e8eff2d401f593e7f01194f8f323cbfca.tar.gz hdf5-eb0d1e4e8eff2d401f593e7f01194f8f323cbfca.tar.bz2 |
HDFFV-10581 add missed change and release note.
-rw-r--r-- | c++/src/CMakeLists.txt | 2 | ||||
-rw-r--r-- | release_docs/RELEASE.txt | 13 |
2 files changed, 12 insertions, 3 deletions
diff --git a/c++/src/CMakeLists.txt b/c++/src/CMakeLists.txt index 8e7f8be..b141a5e 100644 --- a/c++/src/CMakeLists.txt +++ b/c++/src/CMakeLists.txt @@ -139,7 +139,7 @@ if (HDF5_EXPORTED_TARGETS) INSTALL_TARGET_PDB (${HDF5_CPP_LIBSH_TARGET} ${HDF5_INSTALL_BIN_DIR} cpplibraries) endif () if (NOT ONLY_SHARED_LIBS) - INSTALL_TARGET_PDB (${HDF5_CPP_LIB_TARGET} ${HDF5_INSTALL_BIN_DIR} cpplibraries) + INSTALL_TARGET_PDB (${HDF5_CPP_LIB_TARGET} ${HDF5_INSTALL_LIB_DIR} cpplibraries) endif () install ( diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 7c9bbfa..72a3fb1 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -48,6 +48,15 @@ New Features Configuration: ------------- + - Windows PDB files are installed incorrectly + + For static builds, the PDB files for windows should be installed next + to the static libraries in the lib folder. Also the debug versions of + libraries and PDB files are now correctly built using the default + CMAKE_DEBUG_POSTFIX setting. + + (ADB - 2019/07/09, HDFFV-10581) + - Add option to build only shared libs A request was made to prevent building static libraries and only build @@ -286,13 +295,13 @@ Bug Fixes since HDF5-1.10.3 release together with library high bound setting to H5F_LIBVER_V18. When setting non-default file space info in fcpl via - H5Pset_file_space_strategy() and then creating a file with + H5Pset_file_space_strategy() and then creating a file with both high and low library bounds set to H5F_LIBVER_V18 in fapl, the library succeeds in creating the file. File creation should fail because the feature of setting non-default file space info does not exist in library release 1.8 or earlier. - This was fixed by setting and checking the proper version in the + This was fixed by setting and checking the proper version in the file space info message based on the library low and high bounds when creating and opening the HDF5 file. |