From 044a157a29e0e35652c4c7dd30b13cdd17d68b3f Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 7 Apr 2026 09:30:01 -0400 Subject: ASAN: Keep frame pointer --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 47ceb34..13eb03f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ find_package(CURL) option(ASAN "Address Analyzer" OFF) set(ASAN_OPTIONS "-fsanitize=address,leak,null,undefined") if (ASAN) - add_compile_options(${ASAN_OPTIONS} -g -O0) + add_compile_options(${ASAN_OPTIONS} -fno-omit-frame-pointer -g -O0) add_link_options(${ASAN_OPTIONS}) endif() -- cgit