[compiler-rt] r249868 - [CMake] [darwin] [builitins] Don't build x86_64h into the 10.4 builtins library

Chris Bieneman via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 9 11:32:34 PDT 2015


Author: cbieneman
Date: Fri Oct  9 13:32:34 2015
New Revision: 249868

URL: http://llvm.org/viewvc/llvm-project?rev=249868&view=rev
Log:
[CMake] [darwin] [builitins] Don't build x86_64h into the 10.4 builtins library

There is no haswell support in 10.4, so we don't need a 10.4 builtin library.

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=249868&r1=249867&r2=249868&view=diff
==============================================================================
--- compiler-rt/trunk/cmake/config-ix.cmake (original)
+++ compiler-rt/trunk/cmake/config-ix.cmake Fri Oct  9 13:32:34 2015
@@ -354,6 +354,8 @@ if(APPLE)
       ${toolchain_arches})
     message(STATUS "OSX 10.4 supported arches: ${DARWIN_10.4_ARCHS}")
     if(DARWIN_10.4_ARCHS)
+      # don't include the Haswell slice in the 10.4 compatibility library
+      list(REMOVE_ITEM DARWIN_10.4_ARCHS x86_64h)
       list(APPEND BUILTIN_SUPPORTED_OS 10.4)
     endif()
 




More information about the llvm-commits mailing list