[polly] r295672 - [Cmake] Bump required cmake version to 3.4.3.
Michael Kruse via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 20 09:06:31 PST 2017
Author: meinersbur
Date: Mon Feb 20 11:06:31 2017
New Revision: 295672
URL: http://llvm.org/viewvc/llvm-project?rev=295672&view=rev
Log:
[Cmake] Bump required cmake version to 3.4.3.
This is currently the minimum required version by LLVM. Since LLVM is
needed to build Polly, we also require at least that version.
Suggested-by: Philip Pfaffe <philip.pfaffe at gmail.com>
Modified:
polly/trunk/CMakeLists.txt
Modified: polly/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/CMakeLists.txt?rev=295672&r1=295671&r2=295672&view=diff
==============================================================================
--- polly/trunk/CMakeLists.txt (original)
+++ polly/trunk/CMakeLists.txt Mon Feb 20 11:06:31 2017
@@ -1,7 +1,7 @@
# Check if this is a in tree build.
if (NOT DEFINED LLVM_MAIN_SRC_DIR)
project(Polly)
- cmake_minimum_required(VERSION 2.8)
+ cmake_minimum_required(VERSION 3.4.3)
# Where is LLVM installed?
set(LLVM_INSTALL_ROOT "" CACHE PATH "Root of LLVM install.")
More information about the llvm-commits
mailing list