File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -83,8 +83,9 @@ elseif(UNIX)
83
83
endif ()
84
84
85
85
if (PLUGIFY_HAS_SANITIZER)
86
- target_compile_options (${PROJECT_NAME} PRIVATE $<$<CONFIG:Debug>: -fsanitize=address -fno-omit-frame-pointer -fsanitize=undefined>)
87
- target_link_libraries (${PROJECT_NAME} PRIVATE $<$<CONFIG:Debug>: -fsanitize=address -fno-omit-frame-pointer -fsanitize=undefined>)
86
+ # https://github.com/llvm/llvm-project/pull/121228
87
+ target_compile_options (${PROJECT_NAME} PRIVATE $<$<CONFIG:Debug>: -fsanitize=address -fno-omit-frame-pointer>) # -fsanitize=undefined
88
+ target_link_libraries (${PROJECT_NAME} PRIVATE $<$<CONFIG:Debug>: -fsanitize=address -fno-omit-frame-pointer>) # -fsanitize=undefined
88
89
endif ()
89
90
90
91
include (GenerateExportHeader)
You can’t perform that action at this time.
0 commit comments