[compiler-rt] [sanitizer_common] Disable SanitizerCommon lsan tests on Apple arm64 (PR #151929)
Dan Blackwell via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 5 04:08:57 PDT 2025
================
@@ -91,7 +91,7 @@ foreach(tool ${SUPPORTED_TOOLS})
# so don't run the tests by default.
if (NOT (CMAKE_SYSTEM_NAME MATCHES "Darwin" AND
${tool} STREQUAL "lsan" AND
- ${arch} STREQUAL "i386"))
+ (${arch} STREQUAL "i386" OR ${arch} MATCHES "arm64")))
----------------
DanBlackwell wrote:
Yep, done!
https://github.com/llvm/llvm-project/pull/151929
More information about the llvm-commits
mailing list