Files
flat.hpp/cmake/EnableUBSan.cmake
2022-12-29 01:16:54 +07:00

12 lines
298 B
CMake

# https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html
add_library(enable_ubsan INTERFACE)
target_compile_options(enable_ubsan INTERFACE
-fsanitize=undefined
-fno-omit-frame-pointer)
target_link_options(enable_ubsan INTERFACE
-fsanitize=undefined
-fno-omit-frame-pointer)