aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2026-04-07 09:30:01 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2026-04-08 10:18:28 -0400
commit955757b00984912afd7092653e7553cf55555a92 (patch)
tree3f1f21e25dc996db1d2aba4b66c23e8d8c7427a8
parent8356fbed4d986717a1c51b66094f332c6db03918 (diff)
downloadstasis-955757b00984912afd7092653e7553cf55555a92.tar.gz
ASAN: Keep frame pointer
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ec43348..bd214ca 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()