[compiler-rt] r219302 - [ASan] Bump the minimum OSX version required to run ASan to 10.7.

Alexander Potapenko glider at google.com
Wed Oct 8 05:41:11 PDT 2014


Author: glider
Date: Wed Oct  8 07:41:11 2014
New Revision: 219302

URL: http://llvm.org/viewvc/llvm-project?rev=219302&view=rev
Log:
[ASan] Bump the minimum OSX version required to run ASan to 10.7.


Modified:
    compiler-rt/trunk/CMakeLists.txt
    compiler-rt/trunk/make/platform/clang_darwin.mk

Modified: compiler-rt/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/CMakeLists.txt?rev=219302&r1=219301&r2=219302&view=diff
==============================================================================
--- compiler-rt/trunk/CMakeLists.txt (original)
+++ compiler-rt/trunk/CMakeLists.txt Wed Oct  8 07:41:11 2014
@@ -299,7 +299,7 @@ if(APPLE)
   if(COMPILER_RT_USES_LIBCXX)
     set(SANITIZER_MIN_OSX_VERSION 10.7)
   else()
-    set(SANITIZER_MIN_OSX_VERSION 10.6)
+    set(SANITIZER_MIN_OSX_VERSION 10.7)
   endif()
   set(CMAKE_OSX_DEPLOYMENT_TARGET "") # We're setting the flag manually below.
   set(DARWIN_osx_CFLAGS -mmacosx-version-min=${SANITIZER_MIN_OSX_VERSION})

Modified: compiler-rt/trunk/make/platform/clang_darwin.mk
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/make/platform/clang_darwin.mk?rev=219302&r1=219301&r2=219302&view=diff
==============================================================================
--- compiler-rt/trunk/make/platform/clang_darwin.mk (original)
+++ compiler-rt/trunk/make/platform/clang_darwin.mk Wed Oct  8 07:41:11 2014
@@ -157,7 +157,7 @@ CFLAGS.eprintf		:= $(CFLAGS) $(OSX_DEPLO
 CFLAGS.10.4		:= $(CFLAGS) $(OSX_DEPLOYMENT_ARGS)
 # FIXME: We can't build ASAN with our stub SDK yet.
 CFLAGS.asan_osx_dynamic := \
-	$(CFLAGS) -mmacosx-version-min=10.6 -fno-builtin \
+	$(CFLAGS) -mmacosx-version-min=10.7 -fno-builtin \
 	-gline-tables-only \
 	-DMAC_INTERPOSE_FUNCTIONS=1
 





More information about the llvm-commits mailing list