summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-03-18 04:25:50 (GMT)
committerGitHub <noreply@github.com>2023-03-18 04:25:50 (GMT)
commit084247f1cd3bf09df5dd49de3de1874768caaf9f (patch)
tree11c8aff1d73d8f1db07d5919ff75335a206e17bb /release_docs
parent45f13f1de1b6db0fdc34681b4b8046fa46f921ba (diff)
downloadhdf5-084247f1cd3bf09df5dd49de3de1874768caaf9f.zip
hdf5-084247f1cd3bf09df5dd49de3de1874768caaf9f.tar.gz
hdf5-084247f1cd3bf09df5dd49de3de1874768caaf9f.tar.bz2
Removes dmalloc support (#2239) (#2587)
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.txt15
1 files changed, 14 insertions, 1 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index 688116d..9263a63 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -49,6 +49,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 - 2023/03/17)
+
- Allow parallel and threadsafe to be built
In the past, we required --enable-unsupported (Autotools) or
@@ -59,7 +72,7 @@ New Features
(DER - 2023/03/17)
- Added new option to build libaec and zlib inline with CMake.
-
+
Using the CMake FetchContent module, the external filters can populate
content at configure time via any method supported by the ExternalProject
module. Whereas ExternalProject_Add() downloads at build time, the