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)
8383endif ()
8484
8585if (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
8889endif ()
8990
9091include (GenerateExportHeader)
You can’t perform that action at this time.
0 commit comments