Remove quotes causing asan build breakage

The quotes around "-fsanitize=address -shared-libasan" cause the BUILD_ADDRESS_SANITIZER build to fail; remove the quotes

[ROCm/rccl commit: f59de10524]
Этот коммит содержится в:
searlmc1
2023-10-19 16:13:39 -07:00
коммит произвёл GitHub
родитель 1a538d0218
Коммит 212453b2fb
+1 -1
Просмотреть файл
@@ -606,7 +606,7 @@ endif()
#endforeach()
if(BUILD_ADDRESS_SANITIZER)
target_compile_options(rccl PRIVATE "-fsanitize=address -shared-libasan")
target_compile_options(rccl PRIVATE -fsanitize=address -shared-libasan)
endif()
if(TIMETRACE)
target_compile_options(rccl PRIVATE -ftime-trace)