[compiler-rt] r246499 - [CMake] Fixing lip output library name on Darwin platforms.

Chris Bieneman via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 31 15:22:18 PDT 2015


Author: cbieneman
Date: Mon Aug 31 17:22:18 2015
New Revision: 246499

URL: http://llvm.org/viewvc/llvm-project?rev=246499&view=rev
Log:
[CMake] Fixing lip output library name on Darwin platforms.

Modified:
    compiler-rt/trunk/lib/builtins/CMakeLists.txt

Modified: compiler-rt/trunk/lib/builtins/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/builtins/CMakeLists.txt?rev=246499&r1=246498&r2=246499&view=diff
==============================================================================
--- compiler-rt/trunk/lib/builtins/CMakeLists.txt (original)
+++ compiler-rt/trunk/lib/builtins/CMakeLists.txt Mon Aug 31 17:22:18 2015
@@ -337,14 +337,14 @@ if (APPLE)
     endforeach()
 
     if(${os}_builtin_libs)
-      add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/clang_rt.builtins_${os}.a
+      add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/libclang_rt.builtins_${os}.a
         COMMAND lipo -output
-                ${COMPILER_RT_LIBRARY_OUTPUT_DIR}/clang_rt.builtins_${os}.a
+                ${COMPILER_RT_LIBRARY_OUTPUT_DIR}/libclang_rt.builtins_${os}.a
                 -create ${${os}_builtin_lipo_flags}
         DEPENDS ${${os}_builtin_libs}
         )
       add_custom_target(clang_rt.builtins_${os}
-        DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/clang_rt.builtins_${os}.a)
+        DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/libclang_rt.builtins_${os}.a)
       add_dependencies(builtins clang_rt.builtins_${os})
     endif()
   endforeach()




More information about the llvm-commits mailing list