diff options
author | Chris Bieneman <beanz@apple.com> | 2015-10-09 16:47:43 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2015-10-09 16:47:43 +0000 |
commit | 3a1ad3970286c029a84f4b1e2e41cf8ae6c2b94b (patch) | |
tree | f94585cef606f04d8a022d1bc4a076552ac28e2f | |
parent | 26fd69de903921b2fb5ec299d800ee4896f81781 (diff) | |
download | bcm5719-llvm-3a1ad3970286c029a84f4b1e2e41cf8ae6c2b94b.tar.gz bcm5719-llvm-3a1ad3970286c029a84f4b1e2e41cf8ae6c2b94b.zip |
[CMake] [Darwin] [Builtins] Fixing a typo that was keeping the OS X 10.4 builtins library from being built properly.
llvm-svn: 249844
-rw-r--r-- | compiler-rt/cmake/config-ix.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/cmake/config-ix.cmake b/compiler-rt/cmake/config-ix.cmake index 883c53fea08..5a0e29a685e 100644 --- a/compiler-rt/cmake/config-ix.cmake +++ b/compiler-rt/cmake/config-ix.cmake @@ -353,7 +353,7 @@ if(APPLE) DARWIN_10.4_ARCHS ${toolchain_arches}) message(STATUS "OSX 10.4 supported arches: ${DARWIN_10.4_ARCHS}") - if(DARWIN_10.4_ARCHES) + if(DARWIN_10.4_ARCHS) list(APPEND BUILTIN_SUPPORTED_OS 10.4) endif() |