[compiler-rt] b206096 - [rtsan] Remove android support (#99964)

via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 22 15:17:11 PDT 2024


Author: Chris Apple
Date: 2024-07-22T15:17:07-07:00
New Revision: b2060965fd57ff71b52729985abfe4ea1929a4fd

URL: https://github.com/llvm/llvm-project/commit/b2060965fd57ff71b52729985abfe4ea1929a4fd
DIFF: https://github.com/llvm/llvm-project/commit/b2060965fd57ff71b52729985abfe4ea1929a4fd.diff

LOG: [rtsan] Remove android support (#99964)

Based on failing build:
https://lab.llvm.org/buildbot/#/builders/186/builds/829

Follow up to #98679

Added: 
    

Modified: 
    compiler-rt/cmake/config-ix.cmake

Removed: 
    


################################################################################
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