From f8b4a6e25a3cd914d0abe6be5907a75d50a5f8fb Mon Sep 17 00:00:00 2001 From: Christian Rauch Date: Sun, 31 Jan 2021 19:09:25 -0800 Subject: [PATCH] cmake: enable AddressSanitizer in Debug builds --- CMakeLists.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 40ddc0d03..cf3aa20fb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2323,6 +2323,23 @@ if(SDL_STATIC) endif() endif() +set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} \ + -fsanitize=address \ + -fsanitize=bool \ + -fsanitize=bounds \ + -fsanitize=enum \ + -fsanitize=float-cast-overflow \ + -fsanitize=float-divide-by-zero \ + -fsanitize=nonnull-attribute \ + -fsanitize=returns-nonnull-attribute \ + -fsanitize=signed-integer-overflow \ + -fsanitize=undefined \ + -fsanitize=vla-bound \ + -fno-sanitize=alignment \ + -fsanitize=leak \ + -fsanitize=object-size \ +") + ##### Tests ##### if(SDL_TEST)