[PATCH] D29787: Upgrade ios min version to 8

Francis Ricci via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 9 13:20:33 PST 2017


fjricci created this revision.
Herald added a subscriber: mgorny.

Version 8 is the first version to support the __thread
keyword, which is required for building lsan for
64-bit ios.


https://reviews.llvm.org/D29787

Files:
  cmake/config-ix.cmake


Index: cmake/config-ix.cmake
===================================================================
--- cmake/config-ix.cmake
+++ cmake/config-ix.cmake
@@ -204,7 +204,7 @@
     list(APPEND DARWIN_EMBEDDED_PLATFORMS ios)
     set(DARWIN_ios_MIN_VER_FLAG -miphoneos-version-min)
     set(DARWIN_ios_SANITIZER_MIN_VER_FLAG
-      ${DARWIN_ios_MIN_VER_FLAG}=7.0)
+      ${DARWIN_ios_MIN_VER_FLAG}=8.0)
   endif()
   if(COMPILER_RT_ENABLE_WATCHOS)
     list(APPEND DARWIN_EMBEDDED_PLATFORMS watchos)


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D29787.87867.patch
Type: text/x-patch
Size: 492 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170209/d62a6aad/attachment.bin>


More information about the llvm-commits mailing list