mirror of
https://github.com/falcosecurity/falco.git
synced 2025-07-19 17:16:53 +00:00
chore(cmake): add a warning when using both jemalloc and asan.
Signed-off-by: Federico Di Pierro <nierro92@gmail.com> Co-authored-by: Samuel Gaist <samuel.gaist@idiap.ch>
This commit is contained in:
parent
72f4715688
commit
ac191b746c
@ -143,6 +143,9 @@ set(CMD_MAKE make)
|
||||
include(ExternalProject)
|
||||
|
||||
if(USE_JEMALLOC)
|
||||
if(USE_ASAN)
|
||||
message(WARNING "Jemalloc and ASAN do not play well together")
|
||||
endif()
|
||||
include(jemalloc)
|
||||
endif()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user