[test-suite] r271335 - Set higher minimum cmake requirements

Matthias Braun via llvm-commits llvm-commits at lists.llvm.org
Tue May 31 14:26:18 PDT 2016


Author: matze
Date: Tue May 31 16:26:17 2016
New Revision: 271335

URL: http://llvm.org/viewvc/llvm-project?rev=271335&view=rev
Log:
Set higher minimum cmake requirements

Now that llvm has moved to a cmake 3.4.3 minimum, we can bump the
minimum of the test-suite as well.

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

Modified: test-suite/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/CMakeLists.txt?rev=271335&r1=271334&r2=271335&view=diff
==============================================================================
--- test-suite/trunk/CMakeLists.txt (original)
+++ test-suite/trunk/CMakeLists.txt Tue May 31 16:26:17 2016
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.2)
+cmake_minimum_required(VERSION 3.4.3)
 
 include(CheckSymbolExists)
 

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=271335&r1=271334&r2=271335&view=diff
==============================================================================
--- test-suite/trunk/cmake/caches/util/xcode_sdk.cmake (original)
+++ test-suite/trunk/cmake/caches/util/xcode_sdk.cmake Tue May 31 16:26:17 2016
@@ -1,7 +1,3 @@
-# We had problems with cmake not propagating CMAKE_OSX_SYSROOT and
-# CMAKE_OSX_ARCHITECTURES to try_compile() in earlier cmakes.
-cmake_minimum_required(VERSION 3.4)
-
 macro(xcrun_find VARIABLE NAME)
   execute_process(COMMAND xcrun ${XCRUN_FLAGS} -f ${NAME}
                   OUTPUT_STRIP_TRAILING_WHITESPACE




More information about the llvm-commits mailing list