From b8942be0c1c6cdf0416bf177af8fe07cb05ea6ad Mon Sep 17 00:00:00 2001 From: Chris McFarlen Date: Tue, 5 May 2026 13:33:14 -0500 Subject: [PATCH] Turn off ASAN leak detection running tscore/CompileParseRules during build --- src/tscore/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tscore/CMakeLists.txt b/src/tscore/CMakeLists.txt index 9b2382e1c4a..7790adc87dd 100644 --- a/src/tscore/CMakeLists.txt +++ b/src/tscore/CMakeLists.txt @@ -21,7 +21,7 @@ add_executable(CompileParseRules CompileParseRules.cc) add_custom_command( OUTPUT ParseRulesCType ParseRulesCTypeToUpper ParseRulesCTypeToLower - COMMAND CompileParseRules + COMMAND ${CMAKE_COMMAND} -E env ASAN_OPTIONS=detect_leaks=0 $ COMMENT "Generating compile parse rules" )