[compiler-rt] r253709 - [CMake] Add iOS simulator to the supported OS list for the profile library.

Chris Bieneman via llvm-commits llvm-commits at lists.llvm.org
Fri Nov 20 12:56:02 PST 2015


Author: cbieneman
Date: Fri Nov 20 14:56:02 2015
New Revision: 253709

URL: http://llvm.org/viewvc/llvm-project?rev=253709&view=rev
Log:
[CMake] Add iOS simulator to the supported OS list for the profile library.

We already support this in autoconf and it ships in Apple Clang.

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

Modified: compiler-rt/trunk/cmake/config-ix.cmake
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/cmake/config-ix.cmake?rev=253709&r1=253708&r2=253709&view=diff
==============================================================================
--- compiler-rt/trunk/cmake/config-ix.cmake (original)
+++ compiler-rt/trunk/cmake/config-ix.cmake Fri Nov 20 14:56:02 2015
@@ -421,6 +421,7 @@ if(APPLE)
         list(APPEND BUILTIN_SUPPORTED_OS ios)
         list(APPEND PROFILE_SUPPORTED_OS ios)
         list(APPEND BUILTIN_SUPPORTED_OS iossim)
+        list(APPEND PROFILE_SUPPORTED_OS iossim)
       endif()
       foreach(arch ${DARWIN_ios_ARCHS})
         list(APPEND COMPILER_RT_SUPPORTED_ARCH ${arch})




More information about the llvm-commits mailing list