mirror of
https://github.com/BlackMATov/flat.hpp.git
synced 2025-12-13 01:36:27 +07:00
12 lines
298 B
CMake
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)
|