diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2022-11-09 17:22:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-09 17:22:14 (GMT) |
commit | 0f30852242d906cb21d0246b3e68527f608d4d84 (patch) | |
tree | 4b1701d9155b315cad7ee1ecde250e816aedbd42 /release_docs | |
parent | 2025d047e212b5c804ec788fe3bbbf87a93b512b (diff) | |
download | hdf5-0f30852242d906cb21d0246b3e68527f608d4d84.zip hdf5-0f30852242d906cb21d0246b3e68527f608d4d84.tar.gz hdf5-0f30852242d906cb21d0246b3e68527f608d4d84.tar.bz2 |
Removes dmalloc support (#2239)
This has not been used to debug the library in a very long time. Most
developers use valgrind, -fsanitize=address, or some other memory checker
instead of this library.
This removes:
* dmalloc.h include from H5private.h
* --with-dmalloc= Autotools configure option
* HDF5_ENABLE_USING_DMALLOC CMake option
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index e435cae..ba79997 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -47,6 +47,19 @@ New Features Configuration: ------------- + - Removal of dmalloc support + + The ability to build with dmalloc support has been removed along with + the following configure options: + + Autotools: + --with-dmalloc= + + CMake: + HDF5_ENABLE_USING_DMALLOC + + (DER - 2022/11/08) + - Removal of memory allocation sanity checks configure options With the removal of the memory allocation sanity checks feature, the |