[test-suite] r294528 - xcode_sdk.cmake: Use xcrun to set CMAKE_LINKER

Matthias Braun via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 8 14:52:17 PST 2017


Author: matze
Date: Wed Feb  8 16:52:16 2017
New Revision: 294528

URL: http://llvm.org/viewvc/llvm-project?rev=294528&view=rev
Log:
xcode_sdk.cmake: Use xcrun to set CMAKE_LINKER

It seems to be unused in our build, but it shouldn't hurt to initialize
it correctly anyway.

Modified:
    test-suite/trunk/cmake/caches/util/xcode_sdk.cmake

Modified: test-suite/trunk/cmake/caches/util/xcode_sdk.cmake
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/cmake/caches/util/xcode_sdk.cmake?rev=294528&r1=294527&r2=294528&view=diff
==============================================================================
--- test-suite/trunk/cmake/caches/util/xcode_sdk.cmake (original)
+++ test-suite/trunk/cmake/caches/util/xcode_sdk.cmake Wed Feb  8 16:52:16 2017
@@ -20,6 +20,7 @@ xcrun_find_update_cache(CMAKE_RANLIB ran
 xcrun_find_update_cache(CMAKE_AR ar)
 xcrun_find_update_cache(CMAKE_STRIP strip)
 xcrun_find_update_cache(CMAKE_NM nm)
+xcrun_find_update_cache(CMAKE_LINKER ld)
 
 set(CMAKE_OSX_SYSROOT "${SDK_PATH}" CACHE STRING "")
 




More information about the llvm-commits mailing list