From 0022ab4d807aea2fcb793dd3c5266ea2e9003c6a Mon Sep 17 00:00:00 2001 From: Ranjeet Singh Date: Mon, 28 Jan 2019 15:48:07 +0000 Subject: [PATCH] VERSION_GREATER_EQUAL not supported in llvm cmake. Patch https://reviews.llvm.org/D56329 caused build failures for me when building on Windows because of the use of cmake operator 'VERSION_GREATER_EQUAL' which isn't supported in older versions of cmake. The llvm website states that minimum required version of cmake for building llvm is 3.4.3 https://llvm.org/docs/CMake.html Differential Revision: https://reviews.llvm.org/D57326 llvm-svn: 352378 --- llvm/unittests/Support/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/unittests/Support/CMakeLists.txt b/llvm/unittests/Support/CMakeLists.txt index 4060be85c486..40bf93940024 100644 --- a/llvm/unittests/Support/CMakeLists.txt +++ b/llvm/unittests/Support/CMakeLists.txt @@ -90,7 +90,7 @@ if(NOT MSVC) set_source_files_properties(AlignOfTest.cpp PROPERTIES COMPILE_FLAGS -w) endif() if(MSVC) - if( CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 19.15 ) + if( CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 19.14 ) # Since VS2017 15.8, the following snippet: Failed() # generates a warning: # \svn\llvm\utils\unittest\googlemock\include\gmock\gmock-matchers.h(186):