We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e94a560 commit fc3ca8bCopy full SHA for fc3ca8b
cmake/CommonOptions.cmake
@@ -110,7 +110,11 @@ function(set_common_options_on_targets)
110
/w45204
111
)
112
if (TREMOTESF_ASAN)
113
- list(APPEND common_compile_options /fsanitize=address /D_DISABLE_VECTOR_ANNOTATION /D_DISABLE_STRING_ANNOTATION)
+ if (VCPKG_TARGET_TRIPLET MATCHES "^arm64.*")
114
+ message(WARNING "Ignoring TREMOTESF_ASAN=ON for ARM64, it is not supported")
115
+ else()
116
+ list(APPEND common_compile_options /fsanitize=address /D_DISABLE_VECTOR_ANNOTATION /D_DISABLE_STRING_ANNOTATION)
117
+ endif()
118
endif()
119
elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
120
list(TRANSFORM gcc_style_warnings PREPEND "/clang:")
0 commit comments