diff options
author | Chris Bieneman <beanz@apple.com> | 2015-10-09 18:32:34 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2015-10-09 18:32:34 +0000 |
commit | 4ebd15726f7b3a961a393775cda38eebd3ed13e8 (patch) | |
tree | 2ef7c42c39e77791b6b54222a3b22d1c018f277a | |
parent | 980f8f2639417fa9853a04ea58b8c1d7cd91a97c (diff) | |
download | bcm5719-llvm-4ebd15726f7b3a961a393775cda38eebd3ed13e8.tar.gz bcm5719-llvm-4ebd15726f7b3a961a393775cda38eebd3ed13e8.zip |
[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.
llvm-svn: 249868
-rw-r--r-- | compiler-rt/cmake/config-ix.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler-rt/cmake/config-ix.cmake b/compiler-rt/cmake/config-ix.cmake index 5a0e29a685e..d2b65b009d0 100644 --- a/compiler-rt/cmake/config-ix.cmake +++ b/compiler-rt/cmake/config-ix.cmake @@ -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() |