Skip to content

Commit

Permalink
build/cmake: msan seems unsupported on android
Browse files Browse the repository at this point in the history
  • Loading branch information
Will committed Oct 26, 2024
1 parent 8b302a0 commit 0b478bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ set(ALLOWED_kcfisan 0)
if(NOT WIN32 AND (BUILD_ASAN OR BUILD_SAN))
set(ALLOWED_asan 1)
endif()
if(IS_CC_CLANG AND NOT ANDROID (BUILD_MSAN OR BUILD_SAN))
if(IS_CC_CLANG AND NOT ANDROID AND (BUILD_MSAN OR BUILD_SAN))
set(ALLOWED_msan 1)
endif()
if(NOT ANDROID AND NOT WIN32 AND (BUILD_TSAN OR BUILD_SAN))
Expand Down

0 comments on commit 0b478bd

Please sign in to comment.