[compiler-rt] r249844 - [CMake] [Darwin] [Builtins] Fixing a typo that was keeping the OS X 10.4 builtins library from being built properly.

Chris Bieneman via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 9 09:47:44 PDT 2015


Author: cbieneman
Date: Fri Oct  9 11:47:43 2015
New Revision: 249844

URL: http://llvm.org/viewvc/llvm-project?rev=249844&view=rev
Log:
[CMake] [Darwin] [Builtins] Fixing a typo that was keeping the OS X 10.4 builtins library from being built properly.

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=249844&r1=249843&r2=249844&view=diff
==============================================================================
--- compiler-rt/trunk/cmake/config-ix.cmake (original)
+++ compiler-rt/trunk/cmake/config-ix.cmake Fri Oct  9 11:47:43 2015
@@ -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()
 




More information about the llvm-commits mailing list