From 63be7da260520d9438ac860e07c237d89c46c4f7 Mon Sep 17 00:00:00 2001 From: Mac L Date: Thu, 21 May 2026 03:03:19 +1000 Subject: [PATCH] Add support for jemalloc-profiling --- lighthouse/Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lighthouse/Cargo.toml b/lighthouse/Cargo.toml index 3595cf04e79..09fd6d4afeb 100644 --- a/lighthouse/Cargo.toml +++ b/lighthouse/Cargo.toml @@ -37,6 +37,8 @@ beacon-node-redb = ["store/redb"] console-subscriber = ["console-subscriber/default"] # Force the use of the system memory allocator rather than jemalloc. sysmalloc = ["malloc_utils/sysmalloc"] +# Enable jemalloc heap profiling support. +jemalloc-profiling = ["malloc_utils/jemalloc-profiling"] [dependencies] account_manager = { "path" = "../account_manager" }