aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2026-04-07 09:30:01 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2026-04-07 09:30:01 -0400
commit044a157a29e0e35652c4c7dd30b13cdd17d68b3f (patch)
tree556daee7fd97e8b8aa163897cfe2fb074d532412 /CMakeLists.txt
parent70b7ff30e56b13006fe565de827b2744c6adc8cd (diff)
downloadstasis-044a157a29e0e35652c4c7dd30b13cdd17d68b3f.tar.gz
ASAN: Keep frame pointer
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
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()