diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2023-05-05 22:08:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-05 22:08:18 (GMT) |
commit | d7771ba1f93b047891f2f1ab0aa3a9db86549fe2 (patch) | |
tree | be695e5d0b1aff7a4ab74d3b89f4042de6fb2953 /release_docs | |
parent | 8ef6dda49ce15a0f7b20089262fecf582791d6de (diff) | |
download | hdf5-d7771ba1f93b047891f2f1ab0aa3a9db86549fe2.zip hdf5-d7771ba1f93b047891f2f1ab0aa3a9db86549fe2.tar.gz hdf5-d7771ba1f93b047891f2f1ab0aa3a9db86549fe2.tar.bz2 |
CMake fix gen. exprs. and add h5copy help (#2918)
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index d46e0b2..dcba32b 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -103,6 +103,8 @@ New Features LIBAEC library has been used in HDF5 binaries as the szip library of choice for a few years. We are removing the options for using the old SZIP library. + Also removed the config/cmake/FindSZIP.cmake file. + - Enabled instrumentation of the library by default in CMake for parallel debug builds @@ -415,6 +417,19 @@ Bug Fixes since HDF5-1.14.0 release Configuration ------------- + - Fixed syntax of generator expressions used by CMake + + Add quotes around the generator expression should allow CMake to + correctly parse the expression. Generator expressions are typically + parsed after command arguments. If a generator expression contains + spaces, new lines, semicolons or other characters that may be + interpreted as command argument separators, the whole expression + should be surrounded by quotes when passed to a command. Failure to + do so may result in the expression being split and it may no longer + be recognized as a generator expression. + + Fixes GitHub issue #2906 + - Fixed improper include of Subfiling VFD build directory With the release of the Subfiling Virtual File Driver feature, compiler |