r199152 - LLVM's CMake is now using a feature that wasn't preasant in CMake 2.8.7,

Chandler Carruth chandlerc at gmail.com
Mon Jan 13 14:23:58 PST 2014


Author: chandlerc
Date: Mon Jan 13 16:23:58 2014
New Revision: 199152

URL: http://llvm.org/viewvc/llvm-project?rev=199152&view=rev
Log:
LLVM's CMake is now using a feature that wasn't preasant in CMake 2.8.7,
so bump the minimum version in the standalone Clang CMake project as
well.

As I mentioned on the LLVM commit version of this, if this causes any
trouble for folks, just let me know. I'm trying to avoid re-implementing
functionality in CMake, but I will if there are problems using the newer
versions.

Modified:
    cfe/trunk/CMakeLists.txt

Modified: cfe/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/CMakeLists.txt?rev=199152&r1=199151&r2=199152&view=diff
==============================================================================
--- cfe/trunk/CMakeLists.txt (original)
+++ cfe/trunk/CMakeLists.txt Mon Jan 13 16:23:58 2014
@@ -2,7 +2,7 @@
 # standalone project, using LLVM as an external library:
 if( CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR )
   project(Clang)
-  cmake_minimum_required(VERSION 2.8)
+  cmake_minimum_required(VERSION 2.8.8)
 
   # Rely on llvm-config.
   set(CONFIG_OUTPUT)





More information about the cfe-commits mailing list