[compiler-rt] [rtsan] Remove android support (PR #99964)
Chris Apple via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 22 15:05:03 PDT 2024
https://github.com/cjappl created https://github.com/llvm/llvm-project/pull/99964
Based on failing build: https://lab.llvm.org/buildbot/#/builders/186/builds/829
Follow up to #98679
>From 876723cbbcd28da8962b09e0c59c4ff7718d0afb Mon Sep 17 00:00:00 2001
From: Chris Apple <cja-private at pm.me>
Date: Mon, 22 Jul 2024 15:02:30 -0700
Subject: [PATCH] [rtsan] Remove android support
---
compiler-rt/cmake/config-ix.cmake | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/compiler-rt/cmake/config-ix.cmake b/compiler-rt/cmake/config-ix.cmake
index b69c391751707..3a151772e268a 100644
--- a/compiler-rt/cmake/config-ix.cmake
+++ b/compiler-rt/cmake/config-ix.cmake
@@ -760,7 +760,7 @@ else()
endif()
if (COMPILER_RT_HAS_SANITIZER_COMMON AND RTSAN_SUPPORTED_ARCH AND
- OS_NAME MATCHES "Android|Darwin|Linux")
+ OS_NAME MATCHES "Darwin|Linux")
set(COMPILER_RT_HAS_RTSAN TRUE)
else()
set(COMPILER_RT_HAS_RTSAN FALSE)
More information about the llvm-commits
mailing list