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

Mariusz Borsa via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 20 16:19:50 PDT 2024


https://github.com/wrotki created https://github.com/llvm/llvm-project/pull/86035

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

rdar://125052915


>From 2347384476d680f5c7e5ba37d5834b2a1c8282f2 Mon Sep 17 00:00:00 2001
From: Mariusz Borsa <m_borsa at apple.com>
Date: Wed, 20 Mar 2024 16:15:47 -0700
Subject: [PATCH] [Sanitizers][Darwin] Bump up
 DEFAULT_SANITIZER_MIN_OSX_VERSION

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

rdar://125052915
---
 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 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