[llvm] r199148 - Raise the minimum CMake version to 2.8.8 -- we have a report that the

Chandler Carruth chandlerc at gmail.com
Mon Jan 13 14:05:21 PST 2014


Author: chandlerc
Date: Mon Jan 13 16:05:20 2014
New Revision: 199148

URL: http://llvm.org/viewvc/llvm-project?rev=199148&view=rev
Log:
Raise the minimum CMake version to 2.8.8 -- we have a report that the
compiler version checking doesn't work on 2.8.7. This feature was
documented in 2.8.10, but existed for an unknown amount of time before
that.

I'm actually happy to revert this and remove the use of the feature if
there is anyone with a specific problem updating CMake. Please just let
me know. I don't want to re-implement this CMake functionality unless
there is a reason, and this is the only real way to find that out.

Modified:
    llvm/trunk/CMakeLists.txt

Modified: llvm/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/CMakeLists.txt?rev=199148&r1=199147&r2=199148&view=diff
==============================================================================
--- llvm/trunk/CMakeLists.txt (original)
+++ llvm/trunk/CMakeLists.txt Mon Jan 13 16:05:20 2014
@@ -1,7 +1,7 @@
 # See docs/CMake.html for instructions about how to build LLVM with CMake.
 
 project(LLVM)
-cmake_minimum_required(VERSION 2.8)
+cmake_minimum_required(VERSION 2.8.8)
 
 # Add path for custom modules
 set(CMAKE_MODULE_PATH





More information about the llvm-commits mailing list