Cleanup: Update outdated jemalloc-related comment

As of dde0765de2, jemalloc is enabled by default when found.

As of dde0765de2, jemalloc is enabled by default when found.
There is also no active plan to use it on all platforms, i.e.
on Windows tbbmalloc is used.

When it doesn't exist, there is simply a warning:
```
-- Could NOT find JeMalloc (missing: JEMALLOC_LIBRARY JEMALLOC_INCLUDE_DIR)
-- JeMalloc not found, disabling WITH_MEM_JEMALLOC
```

Pull Request: https://projects.blender.org/blender/blender/pulls/137743
This commit is contained in:
Nicolas van Kempen
2025-04-21 10:21:37 +02:00
committed by Sergey Sharybin
parent 288ab8ed1c
commit 132a676120

View File

@@ -758,7 +758,6 @@ option(LLVM_STATIC "Link with LLVM static libraries" OFF)
mark_as_advanced(LLVM_STATIC)
option(WITH_CLANG "Use Clang" OFF)
# disable for now, but plan to support on all platforms eventually
option(WITH_MEM_JEMALLOC "Enable malloc replacement (http://www.canonware.com/jemalloc)" ON)
mark_as_advanced(WITH_MEM_JEMALLOC)