[compiler-rt] 19268ac - [Sanitizers][Darwin] Bump up DEFAULT_SANITIZER_MIN_OSX_VERSION (#86035)

via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 22 13:36:21 PDT 2024


Author: Mariusz Borsa
Date: 2024-03-22T13:36:17-07:00
New Revision: 19268ac55106834701b1c41acded4d413a3502e9

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

LOG: [Sanitizers][Darwin] Bump up DEFAULT_SANITIZER_MIN_OSX_VERSION (#86035)

The greendragon was recently moved and now it runs on somewhat newer
macOS
version - which breaks some sanitizers tests

rdar://125052915

Co-authored-by: Mariusz Borsa <m_borsa at apple.com>

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 4f47142850a55e..46a6fdf8728ff8 100644
--- a/compiler-rt/cmake/config-ix.cmake
+++ b/compiler-rt/cmake/config-ix.cmake
@@ -461,7 +461,7 @@ if(APPLE)
     set(ORC_SUPPORTED_OS osx)
   endif()
 
-  set(DEFAULT_SANITIZER_MIN_OSX_VERSION 10.10)
+  set(DEFAULT_SANITIZER_MIN_OSX_VERSION 10.13)
   set(DARWIN_osx_MIN_VER_FLAG "-mmacosx-version-min")
   if(NOT SANITIZER_MIN_OSX_VERSION)
     string(REGEX MATCH "${DARWIN_osx_MIN_VER_FLAG}=([.0-9]+)"


        


More information about the llvm-commits mailing list