summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-04-22 06:25:12 (GMT)
committerGitHub <noreply@github.com>2023-04-22 06:25:12 (GMT)
commit7707859279a60b32d2b6c915442a7c04d44445b4 (patch)
tree890d16aa2408b270368b36ea4f05ca20fe2f16f6 /release_docs
parenta4371b6fce577852691dfdeac642dec1dd4b9453 (diff)
downloadhdf5-7707859279a60b32d2b6c915442a7c04d44445b4.zip
hdf5-7707859279a60b32d2b6c915442a7c04d44445b4.tar.gz
hdf5-7707859279a60b32d2b6c915442a7c04d44445b4.tar.bz2
Merge with develop (#2790)
Diffstat (limited to 'release_docs')
-rw-r--r--release_docs/INSTALL4
-rw-r--r--release_docs/INSTALL_CMake.txt68
-rw-r--r--release_docs/INSTALL_Cygwin.txt10
-rw-r--r--release_docs/README_HDF5_CMake8
-rw-r--r--release_docs/README_HPC6
-rw-r--r--release_docs/RELEASE.txt134
-rw-r--r--release_docs/USING_CMake_Examples.txt2
-rw-r--r--release_docs/USING_HDF5_CMake.txt17
-rw-r--r--release_docs/USING_HDF5_VS.txt4
9 files changed, 138 insertions, 115 deletions
diff --git a/release_docs/INSTALL b/release_docs/INSTALL
index 177f3b6..2b8f3b6 100644
--- a/release_docs/INSTALL
+++ b/release_docs/INSTALL
@@ -417,7 +417,7 @@ CONTENTS
4.3.11. Backward compatibility
- The 1.13 version of the HDF5 library can be configured to operate
+ The 1.14 version of the HDF5 library can be configured to operate
identically to the v1.12 library with the
--with-default-api-version=v112
configure flag, or identically to the v1.10 library with the
@@ -427,7 +427,7 @@ CONTENTS
configure flag, or identically to the v1.6 library with the
--with-default-api-version=v16
configure flag. This allows existing code to be compiled with the
- v1.13 library without requiring immediate changes to the application
+ v1.14 library without requiring immediate changes to the application
source code. For additional configuration options and other details,
see "API Compatibility Macros":
diff --git a/release_docs/INSTALL_CMake.txt b/release_docs/INSTALL_CMake.txt
index b5521f8..d2cb4af 100644
--- a/release_docs/INSTALL_CMake.txt
+++ b/release_docs/INSTALL_CMake.txt
@@ -27,11 +27,11 @@ Obtaining HDF5 source code
2. Obtain compressed (*.tar or *.zip) HDF5 source from
https://portal.hdfgroup.org/display/support/Building+HDF5+with+CMake
and put it in "myhdfstuff".
- Uncompress the file. There should be a hdf5-1.13."X" folder.
+ Uncompress the file. There should be a hdf5-1.14."X" folder.
CMake version
1. We suggest you obtain the latest CMake from the Kitware web site.
- The HDF5 1.13."X" product requires a minimum CMake version 3.12,
+ The HDF5 1.14."X" product requires a minimum CMake version 3.12,
where "X" is the current HDF5 release version. If you are using
VS2022, the minimum version is 3.21.
@@ -54,7 +54,7 @@ The following files referenced below are available at the HDF web site:
https://portal.hdfgroup.org/display/support/Building+HDF5+with+CMake
Single compressed file with all the files needed, including source:
- CMake-hdf5-1.13.X.zip or CMake-hdf5-1.13.X.tar.gz
+ CMake-hdf5-1.14.X.zip or CMake-hdf5-1.14.X.tar.gz
Individual files included in the above mentioned compressed files
-----------------------------------------------
@@ -83,10 +83,10 @@ To build HDF5 with the SZIP and ZLIB external libraries you will need to:
1. Change to the development directory "myhdfstuff".
- 2. Download the CMake-hdf5-1.13.X.zip(.tar.gz) file to "myhdfstuff".
+ 2. Download the CMake-hdf5-1.14.X.zip(.tar.gz) file to "myhdfstuff".
Uncompress the file.
- 3. Change to the source directory "hdf5-1.13.x".
+ 3. Change to the source directory "hdf5-1.14.x".
CTestScript.cmake file should not be modified.
4. Edit the platform configuration file, HDF5options.cmake, if you want to change
@@ -96,6 +96,10 @@ To build HDF5 with the SZIP and ZLIB external libraries you will need to:
5. From the "myhdfstuff" directory execute the CTest Script with the
following options:
+ On 32-bit Windows with Visual Studio 2022, execute:
+ ctest -S HDF5config.cmake,BUILD_GENERATOR=VS2022 -C Release -VV -O hdf5.log
+ On 64-bit Windows with Visual Studio 2022, execute:
+ ctest -S HDF5config.cmake,BUILD_GENERATOR=VS202264 -C Release -VV -O hdf5.log
On 32-bit Windows with Visual Studio 2019, execute:
ctest -S HDF5config.cmake,BUILD_GENERATOR=VS2019 -C Release -VV -O hdf5.log
On 64-bit Windows with Visual Studio 2019, execute:
@@ -104,17 +108,13 @@ To build HDF5 with the SZIP and ZLIB external libraries you will need to:
ctest -S HDF5config.cmake,BUILD_GENERATOR=VS2017 -C Release -VV -O hdf5.log
On 64-bit Windows with Visual Studio 2017, execute:
ctest -S HDF5config.cmake,BUILD_GENERATOR=VS201764 -C Release -VV -O hdf5.log
- On 32-bit Windows with Visual Studio 2015, execute:
- ctest -S HDF5config.cmake,BUILD_GENERATOR=VS2015 -C Release -VV -O hdf5.log
- On 64-bit Windows with Visual Studio 2015, execute:
- ctest -S HDF5config.cmake,BUILD_GENERATOR=VS201564 -C Release -VV -O hdf5.log
On Linux and Mac, execute:
ctest -S HDF5config.cmake,BUILD_GENERATOR=Unix -C Release -VV -O hdf5.log
The supplied build scripts are versions of the above.
The command above will configure, build, test, and create an install
package in the myhdfstuff folder. It will have the format:
- HDF5-1.13.NN-<platform>.<zip or tar.gz>
+ HDF5-1.14.NN-<platform>.<zip or tar.gz>
On Unix, <platform> will be "Linux". A similar .sh file will also be created.
On Windows, <platform> will be "win64" or "win32". If you have an
@@ -135,13 +135,13 @@ To build HDF5 with the SZIP and ZLIB external libraries you will need to:
6. To install, "X" is the current release version
On Windows (with WiX installed), execute:
- HDF5-1.13."X"-win32.msi or HDF5-1.13."X"-win64.msi
+ HDF5-1.14."X"-win32.msi or HDF5-1.14."X"-win64.msi
By default this program will install the hdf5 library into the
"C:\Program Files" directory and will create the following
directory structure:
HDF_Group
--HDF5
- ----1.13."X"
+ ----1.14."X"
------bin
------include
------lib
@@ -149,40 +149,40 @@ To build HDF5 with the SZIP and ZLIB external libraries you will need to:
On Linux, change to the install destination directory
(create it if doesn't exist) and execute:
- <path-to>/myhdfstuff/HDF5-1.13."X"-Linux.sh
+ <path-to>/myhdfstuff/HDF5-1.14."X"-Linux.sh
After accepting the license, the script will prompt:
By default the HDF5 will be installed in:
- "<current directory>/HDF5-1.13."X"-Linux"
- Do you want to include the subdirectory HDF5-1.13."X"-Linux?
+ "<current directory>/HDF5-1.14."X"-Linux"
+ Do you want to include the subdirectory HDF5-1.14."X"-Linux?
Saying no will install in: "<current directory>" [Yn]:
Note that the script will create the following directory structure
relative to the install point:
HDF_Group
--HDF5
- ----1.13."X"
+ ----1.14."X"
------bin
------include
------lib
------share
- On Mac you will find HDF5-1.13."X"-Darwin.dmg in the myhdfstuff folder. Click
+ On Mac you will find HDF5-1.14."X"-Darwin.dmg in the myhdfstuff folder. Click
on the dmg file to proceed with installation. After accepting the license,
there will be a folder with the following structure:
HDF_Group
--HDF5
- ----1.13."X"
+ ----1.14."X"
------bin
------include
------lib
------share
By default the installation will create the bin, include, lib and cmake
- folders in the <install destination directory>/HDF_Group/HDF5/1.13."X"
+ folders in the <install destination directory>/HDF_Group/HDF5/1.14."X"
The <install destination directory> depends on the build platform;
Windows will set the default to:
- C:/Program Files/HDF_Group/HDF5/1.13."X"
+ C:/Program Files/HDF_Group/HDF5/1.14."X"
Linux will set the default to:
- "myhdfstuff/HDF_Group/HDF5/1.13."X"
+ "myhdfstuff/HDF_Group/HDF5/1.14."X"
The default can be changed by adding ",INSTALLDIR=<my new dir>" to the
"ctest -S HDF5config.cmake..." command. For example on linux:
ctest -S HDF5config.cmake,INSTALLDIR=/usr/local/myhdf5,BUILD_GENERATOR=Unix -C Release -VV -O hdf5.log
@@ -209,13 +209,13 @@ Notes: This short set of instructions is written for users who want to
5. Configure the C library, tools and tests with one of the following commands:
On Windows 32 bit
- cmake -G "Visual Studio 12 2013" -DCMAKE_BUILD_TYPE:STRING=Release -DBUILD_SHARED_LIBS:BOOL=OFF -DBUILD_TESTING:BOOL=ON -DHDF5_BUILD_TOOLS:BOOL=ON ..\hdf5-1.13."X"
+ cmake -G "Visual Studio 12 2013" -DCMAKE_BUILD_TYPE:STRING=Release -DBUILD_SHARED_LIBS:BOOL=OFF -DBUILD_TESTING:BOOL=ON -DHDF5_BUILD_TOOLS:BOOL=ON ..\hdf5-1.14."X"
On Windows 64 bit
- cmake -G "Visual Studio 12 2013 Win64" -DCMAKE_BUILD_TYPE:STRING=Release -DBUILD_SHARED_LIBS:BOOL=OFF -DBUILD_TESTING:BOOL=ON -DHDF5_BUILD_TOOLS:BOOL=ON ..\hdf5-1.13."X"
+ cmake -G "Visual Studio 12 2013 Win64" -DCMAKE_BUILD_TYPE:STRING=Release -DBUILD_SHARED_LIBS:BOOL=OFF -DBUILD_TESTING:BOOL=ON -DHDF5_BUILD_TOOLS:BOOL=ON ..\hdf5-1.14."X"
On Linux and Mac
- cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE:STRING=Release -DBUILD_SHARED_LIBS:BOOL=OFF -DBUILD_TESTING:BOOL=ON -DHDF5_BUILD_TOOLS:BOOL=ON ../hdf5-1.13."X"
+ cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE:STRING=Release -DBUILD_SHARED_LIBS:BOOL=OFF -DBUILD_TESTING:BOOL=ON -DHDF5_BUILD_TOOLS:BOOL=ON ../hdf5-1.14."X"
where "X" is the current release version.
@@ -230,13 +230,13 @@ Notes: This short set of instructions is written for users who want to
9. To install
On Windows (with WiX installed), execute:
- HDF5-1.13."X"-win32.msi or HDF5-1.13."X"-win64.msi
+ HDF5-1.14."X"-win32.msi or HDF5-1.14."X"-win64.msi
By default this program will install the hdf5 library into the
"C:\Program Files" directory and will create the following
directory structure:
HDF_Group
--HDF5
- ----1.13."X"
+ ----1.14."X"
------bin
------include
------lib
@@ -244,28 +244,28 @@ Notes: This short set of instructions is written for users who want to
On Linux, change to the install destination directory
(create if doesn't exist) and execute:
- <path-to>/myhdfstuff/build/HDF5-1.13."X"-Linux.sh
+ <path-to>/myhdfstuff/build/HDF5-1.14."X"-Linux.sh
After accepting the license, the script will prompt:
By default the HDF5 will be installed in:
- "<current directory>/HDF5-1.13."X"-Linux"
- Do you want to include the subdirectory HDF5-1.13."X"-Linux?
+ "<current directory>/HDF5-1.14."X"-Linux"
+ Do you want to include the subdirectory HDF5-1.14."X"-Linux?
Saying no will install in: "<current directory>" [Yn]:
Note that the script will create the following directory structure
relative to the install point:
HDF_Group
--HDF5
- ----1.13."X"
+ ----1.14."X"
------bin
------include
------lib
------share
- On Mac you will find HDF5-1.13."X"-Darwin.dmg in the build folder. Click
+ On Mac you will find HDF5-1.14."X"-Darwin.dmg in the build folder. Click
on the dmg file to proceed with installation. After accepting the license,
there will be a folder with the following structure:
HDF_Group
--HDF5
- ----1.13."X"
+ ----1.14."X"
------bin
------include
------lib
@@ -277,7 +277,7 @@ IV. Further considerations
========================================================================
1. We suggest you obtain the latest CMake for windows from the Kitware
- web site. The HDF5 1.13."X" product requires a minimum CMake version 3.18.
+ web site. The HDF5 1.14."X" product requires a minimum CMake version 3.18.
2. If you plan to use Zlib or Szip:
A. Download the binary packages and install them in a central location.
@@ -763,6 +763,8 @@ BUILD_SHARED_LIBS "Build Shared Libraries" ON
BUILD_STATIC_LIBS "Build Static Libraries" ON
BUILD_STATIC_EXECS "Build Static Executables" OFF
BUILD_TESTING "Build HDF5 Unit Testing" ON
+if (WINDOWS)
+ DISABLE_PDB_FILES "Do not install PDB files" OFF
---------------- HDF5 Build Options ---------------------
HDF5_BUILD_CPP_LIB "Build HDF5 C++ Library" OFF
diff --git a/release_docs/INSTALL_Cygwin.txt b/release_docs/INSTALL_Cygwin.txt
index 34d3e5a..a605f4d 100644
--- a/release_docs/INSTALL_Cygwin.txt
+++ b/release_docs/INSTALL_Cygwin.txt
@@ -2,7 +2,7 @@
HDF5 Build and Install Instructions for Cygwin
************************************************************************
-This document is a instruction on how to build, test and install HDF5 library on
+This document is an instruction on how to build, test and install HDF5 library on
Cygwin. See detailed information in hdf5/INSTALL.
NOTE: hdf5 can be built with CMake, see the INSTALL_CMake.txt file for more guidance.
@@ -98,19 +98,19 @@ Build, Test and Install HDF5 on Cygwin
The HDF5 source code is distributed in a variety of formats which
can be unpacked with the following commands, each of which creates
- an `hdf5-1.13.x' directory.
+ an `hdf5-1.14.x' directory.
2.1 Non-compressed tar archive (*.tar)
- $ tar xf hdf5-1.13.x.tar
+ $ tar xf hdf5-1.14.x.tar
2.2 Gzip'd tar archive (*.tar.gz)
- $ gunzip < hdf5-1.13.x.tar.gz | tar xf -
+ $ gunzip < hdf5-1.14.x.tar.gz | tar xf -
2.3 Bzip'd tar archive (*.tar.bz2)
- $ bunzip2 < hdf5-1.13.x.tar.bz2 | tar xf -
+ $ bunzip2 < hdf5-1.14.x.tar.bz2 | tar xf -
2. Setup Environment
diff --git a/release_docs/README_HDF5_CMake b/release_docs/README_HDF5_CMake
index 8b30112..1975d84 100644
--- a/release_docs/README_HDF5_CMake
+++ b/release_docs/README_HDF5_CMake
@@ -6,18 +6,18 @@ This tar file contains
CTestScript.cmake
HDF5config.cmake CMake scripts for building HDF5
HDF5options.cmake
- hdf5-1.13.2 HDF5 1.13.2 source
+ hdf5-1.14.1 HDF5 1.14.1 source
LIBAEC.tar.gz source for building SZIP replacement
ZLib.tar.gz source for building ZLIB
hdf5_plugins.tar.gz source for building compression plugins
- HDF5Examples-2.0.1-Source.tar.gz source for building examples
+ HDF5Examples-2.0.3-Source.tar.gz source for building examples
For more information about building HDF5 with CMake, see USING_HDF5_CMake.txt in
-hdf5-1.13.2/release_docs, or
+hdf5-1.14.1/release_docs, or
https://portal.hdfgroup.org/display/support/Building+HDF5+with+CMake.
For more information about building HDF5 with CMake on HPC machines, including
-cross compiling on Cray XC40, see README_HPC in hdf5-1.13.2/release_docs.
+cross compiling on Cray XC40, see README_HPC in hdf5-1.14.1/release_docs.
diff --git a/release_docs/README_HPC b/release_docs/README_HPC
index 02034b4..c2be492 100644
--- a/release_docs/README_HPC
+++ b/release_docs/README_HPC
@@ -154,10 +154,10 @@ If using ctest is undesirable, one can create a build directory and run the cmak
configure command, for example
"/projects/Mutrino/hpcsoft/cle6.0/common/cmake/3.18/bin/cmake"
--C "<working directory>/hdf5-1.13.3/config/cmake/cacheinit.cmake"
+-C "<working directory>/hdf5-1.14.x/config/cmake/cacheinit.cmake"
-DCMAKE_BUILD_TYPE:STRING=Release -DHDF5_BUILD_FORTRAN:BOOL=ON
-DHDF5_BUILD_JAVA:BOOL=OFF
--DCMAKE_INSTALL_PREFIX:PATH=<working directory>/HDF_Group/HDF5/1.13.3
+-DCMAKE_INSTALL_PREFIX:PATH=<working directory>/HDF_Group/HDF5/1.14.x
-DHDF5_ENABLE_Z_LIB_SUPPORT:BOOL=OFF -DHDF5_ENABLE_SZIP_SUPPORT:BOOL=OFF
-DHDF5_ENABLE_PARALLEL:BOOL=ON -DHDF5_BUILD_CPP_LIB:BOOL=OFF
-DHDF5_BUILD_JAVA:BOOL=OFF -DHDF5_ENABLE_THREADSAFE:BOOL=OFF
@@ -168,7 +168,7 @@ configure command, for example
-DLOCAL_BATCH_SCRIPT_NAME:STRING=knl_ctestS.sl
-DLOCAL_BATCH_SCRIPT_PARALLEL_NAME:STRING=knl_ctestP.sl -DSITE:STRING=mutrino
-DBUILDNAME:STRING=par-knl_GCC493-SHARED-Linux-4.4.156-94.61.1.16335.0.PTF.1107299-default-x86_64
-"-GUnix Makefiles" "" "<working directory>/hdf5-1.13.3"
+"-GUnix Makefiles" "" "<working directory>/hdf5-1.14.x"
followed by make and batch jobs to run tests.
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index 4caa6c0..a06e2a7 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -99,8 +99,9 @@ New Features
Fortran Library:
----------------
- -
+ - Added Fortran async APIs
+ H5A, H5D, H5ES, H5G, H5F, H5L and H5O async APIs were added.
C++ Library:
------------
@@ -148,14 +149,70 @@ Bug Fixes since HDF5-1.14.0 release
===================================
Library
-------
- - Fixed memory leaks that could occur when reading a dataset from a malformed
- file
+ - Fixed memory leaks when processing malformed object header continuation messages
+
+ Malformed object header continuation messages can result in a too-small
+ buffer being passed to the decode function, which could lead to reading
+ past the end of the buffer. Additionally, errors in processing these
+ malformed messages can lead to allocated memory not being cleaned up.
+
+ This fix adds bounds checking and cleanup code to the object header
+ continuation message processing.
+
+ Fixes GitHub issue #2604
+
+ - Fixed memory leaks, aborts, and overflows in H5O EFL decode
+
+ The external file list code could call assert(), read past buffer
+ boundaries, and not properly clean up resources when parsing malformed
+ external data files messages.
+
+ This fix cleans up allocated memory, adds buffer bounds checks, and
+ converts asserts to HDF5 error checking.
+
+ Fixes GitHub issue #2605
+
+ - Fixed potential heap buffer overflow in decoding of link info message
+
+ Detections of buffer overflow were added for decoding version, index
+ flags, link creation order value, and the next three addresses. The
+ checkings will remove the potential invalid read of any of these
+ values that could be triggered by a malformed file.
+
+ Fixes GitHub issue #2603
+
+ - Memory leak
+
+ Memory leak was detected when running h5dump with "pov". The memory was allocated
+ via H5FL__malloc() in hdf5/src/H5FL.c
- When attempting to read layout, pline, and efl information for a dataset,
- memory leaks could occur if attempting to read pline/efl information threw
- an error, which is due to memory being allocated for pline and efl not being
- properly cleaned up on error.
+ The fuzzed file "pov" was an HDF5 file containing an illegal continuation message.
+ When deserializing the object header chunks for the file, memory is allocated for the
+ array of continuation messages (cont_msg_info->msgs) in continuation message info struct.
+ As error is encountered in loading the illegal message, the memory allocated for
+ cont_msg_info->msgs needs to be freed.
+
+ Fixes GitHub issue #2599
+
+ - Fixed memory leaks that could occur when reading a dataset from a
+ malformed file
+ When attempting to read layout, pline, and efl information for a
+ dataset, memory leaks could occur if attempting to read pline/efl
+ information threw an error, which is due to the memory that was
+ allocated for pline and efl not being properly cleaned up on error.
+
+ Fixes GitHub issue #2602
+
+ - Fixed potential heap buffer overrun in group info header decoding from malformed file
+
+ H5O__ginfo_decode could sometimes read past allocated memory when parsing a
+ group info message from the header of a malformed file.
+
+ It now checks buffer size before each read to properly throw an error in these cases.
+
+ Fixes GitHub issue #2601
+
- Fixed potential buffer overrun issues in some object header decode routines
Several checks were added to H5O__layout_decode and H5O__sdspace_decode to
@@ -180,19 +237,6 @@ Bug Fixes since HDF5-1.14.0 release
Also added a regression test for these two I/O concentrator selection
strategies to prevent future issues.
- - Memory leak
-
- Memory leak was detected when running h5dump with "pov". The memory was allocated
- via H5FL__malloc() in hdf5/src/H5FL.c
-
- The fuzzed file "pov" was an HDF5 file containing an illegal continuation message.
- When deserializing the object header chunks for the file, memory is allocated for the
- array of continuation messages (cont_msg_info->msgs) in continuation message info struct.
- As error is encountered in loading the illegal message, the memory allocated for
- cont_msg_info->msgs needs to be freed.
-
- Fixes GitHub issue #2599
-
- Fixed a heap buffer overflow that occurs when reading from
a dataset with a compact layout within a malformed HDF5 file
@@ -224,24 +268,6 @@ Bug Fixes since HDF5-1.14.0 release
being copied when projecting the point selection onto the
hyperslab selection's dataspace.
- - Fixed issues in the Subfiling VFD when using the SELECT_IOC_EVERY_NTH_RANK
- or SELECT_IOC_TOTAL I/O concentrator selection strategies
-
- Multiple bugs involving these I/O concentrator selection strategies
- were fixed, including:
-
- * A bug that caused the selection strategy to be altered when
- criteria for the strategy was specified in the
- H5FD_SUBFILING_IOC_SELECTION_CRITERIA environment variable as
- a single value, rather than in the old and undocumented
- 'integer:integer' format
- * Two bugs which caused a request for 'N' I/O concentrators to
- result in 'N - 1' I/O concentrators being assigned, which also
- lead to issues if only 1 I/O concentrator was requested
-
- Also added a regression test for these two I/O concentrator selection
- strategies to prevent future issues.
-
- Fixed an issue with collective metadata writes of global heap data
New test failures in parallel netCDF started occurring with debug
@@ -270,6 +296,18 @@ Bug Fixes since HDF5-1.14.0 release
Fixes GitHub issue #2458
+ - Fixed buffer overflow error in image decoding function.
+
+ The error occurred in the function for decoding address from the specified
+ buffer, which is called many times from the function responsible for image
+ decoding. The length of the buffer is known in the image decoding function,
+ but no checks are produced, so the buffer overflow can occur in many places,
+ including callee functions for address decoding.
+
+ The error was fixed by inserting corresponding checks for buffer overflow.
+
+ Fixes GitHub issue #2432
+
Java Library
------------
@@ -495,26 +533,6 @@ Platforms Tested
Known Problems
==============
- ************************************************************
- * _ *
- * (_) *
- * __ ____ _ _ __ _ __ _ _ __ __ _ *
- * \ \ /\ / / _` | '__| '_ \| | '_ \ / _` | *
- * \ V V / (_| | | | | | | | | | | (_| | *
- * \_/\_/ \__,_|_| |_| |_|_|_| |_|\__, | *
- * __/ | *
- * |___/ *
- * *
- * Please refrain from running any program (including *
- * HDF5 tests) which uses the subfiling VFD on Perlmutter *
- * at the National Energy Research Scientific Computing *
- * Center, NERSC. *
- * Doing so may cause a system disruption due to subfiling *
- * crashing Lustre. The sytem's Lustre bug is expected *
- * to be resolved by 2023. *
- * *
- ************************************************************
-
CMake files do not behave correctly with paths containing spaces.
Do not use spaces in paths because the required escaping for handling spaces
results in very complex and fragile build files.
diff --git a/release_docs/USING_CMake_Examples.txt b/release_docs/USING_CMake_Examples.txt
index 853fa4f..4439296 100644
--- a/release_docs/USING_CMake_Examples.txt
+++ b/release_docs/USING_CMake_Examples.txt
@@ -21,7 +21,7 @@ I. Preconditions
========================================================================
1. We suggest you obtain the latest CMake for your platform from the Kitware
- web site. The HDF5 1.13.x product requires a minimum CMake version
+ web site. The HDF5 1.14.x product requires a minimum CMake version
of 3.18. If you are using VS2022, the minimum version is 3.21.
2. You have installed the HDF5 library built with CMake, by executing
diff --git a/release_docs/USING_HDF5_CMake.txt b/release_docs/USING_HDF5_CMake.txt
index e8e50df..698b275 100644
--- a/release_docs/USING_HDF5_CMake.txt
+++ b/release_docs/USING_HDF5_CMake.txt
@@ -38,7 +38,7 @@ I. Preconditions
========================================================================
1. We suggest you obtain the latest CMake for your platform from the Kitware
- web site. The HDF5 1.13.x product requires a minimum CMake version
+ web site. The HDF5 1.14.x product requires a minimum CMake version
of 3.18. If you are using VS2022, the minimum version is 3.21.
2. You have installed the HDF5 library built with CMake, by executing
@@ -50,24 +50,24 @@ I. Preconditions
or environment variable, set(ENV{HDF5_ROOT} "<install_path>")
to the installed location of HDF5.
On Windows:
- HDF5_ROOT=C:/Program Files/HDF_Group/HDF5/1.13.x/
+ HDF5_ROOT=C:/Program Files/HDF_Group/HDF5/1.14.x/
On unix:
- HDF5_ROOT=<install root folder>/HDF_Group/HDF5/1.13.x/
+ HDF5_ROOT=<install root folder>/HDF_Group/HDF5/1.14.x/
If you are using shared libraries, you may need to add to the path
environment variable. Set the path environment variable to the
installed location of the library files for HDF5.
On Windows (*.dll):
- PATH=%PATH%;C:/Program Files/HDF_Group/HDF5/1.13.x/bin
+ PATH=%PATH%;C:/Program Files/HDF_Group/HDF5/1.14.x/bin
On unix (*.so):
- LD_LIBRARY_PATH=$LD_LIBRARY_PATH:<install root folder>/HDF_Group/HDF5/1.13.x/lib
+ LD_LIBRARY_PATH=$LD_LIBRARY_PATH:<install root folder>/HDF_Group/HDF5/1.14.x/lib
If you are using filter plugin libraries, you will need to set the
HDF5_PLUGIN_PATH environment variable.
On Windows:
- HDF5_PLUGIN_PATH=C:/Program Files/HDF_Group/HDF5/1.13.x/lib/plugin
+ HDF5_PLUGIN_PATH=C:/Program Files/HDF_Group/HDF5/1.14.x/lib/plugin
On unix:
- HDF5_PLUGIN_PATH=<install root folder>/HDF_Group/HDF5/1.13.x/lib/plugin
+ HDF5_PLUGIN_PATH=<install root folder>/HDF_Group/HDF5/1.14.x/lib/plugin
(Note there are no quote characters used on Windows and all platforms
use forward slashes)
@@ -126,6 +126,9 @@ These steps are described in more detail below.
* Visual Studio 16 2019
* ... in addition VS2019 will need to set the "-A" option,
* ... [Win32, x64, ARM, ARM64]
+ * Visual Studio 17 2022
+ * ... in addition VS2022 will need to set the "-A" option,
+ * ... [Win32, x64, ARM, ARM64]
<options> is:
* BUILD_TESTING:BOOL=ON
diff --git a/release_docs/USING_HDF5_VS.txt b/release_docs/USING_HDF5_VS.txt
index 5ec9996..d604806 100644
--- a/release_docs/USING_HDF5_VS.txt
+++ b/release_docs/USING_HDF5_VS.txt
@@ -54,11 +54,11 @@ Using Visual Studio 2008 with HDF5 Libraries built with Visual Studio 2008
and select "x64".
2.2 Find the box "Show directories for", choose "Include files", add the
- header path (i.e. c:\Program Files\HDF_Group\HDF5\1.13.x\include)
+ header path (i.e. c:\Program Files\HDF_Group\HDF5\1.14.x\include)
to the included directories.
2.3 Find the box "Show directories for", choose "Library files", add the
- library path (i.e. c:\Program Files\HDF_Group\HDF5\1.13.x\lib)
+ library path (i.e. c:\Program Files\HDF_Group\HDF5\1.14.x\lib)
to the library directories.
2.4 If using Fortran libraries, you will also need to setup the path