From c00a4be2a8485f9354097d457d0961c53e37b307 Mon Sep 17 00:00:00 2001 From: Leandro Pereira Date: Mon, 27 Jan 2020 19:16:15 -0800 Subject: [PATCH] Add a note about mimalloc also being supported as an alt. malloc() --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9a780d183..34967a00b 100644 --- a/README.md +++ b/README.md @@ -130,7 +130,8 @@ with, specify one of the following options to the CMake invocation line: - `-DSANITIZER=thread` selects the Thread Sanitizer. Alternative memory allocators can be selected as well. Lwan currently -supports [TCMalloc](https://github.com/gperftools/gperftools) and +supports [TCMalloc](https://github.com/gperftools/gperftools), +[mimalloc](https://github.com/microsoft/mimalloc), and [jemalloc](http://jemalloc.net/) out of the box. To use either one of them, pass `-DALTERNATIVE_MALLOC=ON` to the CMake invocation line.