tools/cmake: Update to 3.15.1
Update CMake to 3.15.1 Refresh patches Remove inofficial fossies.org and replace with GitHub (link on official site) Remove 150-C-feature-checks-Match-warnings-more-strictly.patch as it's a no longer needed backport from upstream. Disable ccache if GCC is 4.8, 4.9 or 5.X to avoid build failures. Reference: https://github.com/openwrt/openwrt/pull/1929 Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
This commit is contained in:
		 Daniel Engberg
					Daniel Engberg
				
			
				
					committed by
					
						 Hauke Mehrtens
						Hauke Mehrtens
					
				
			
			
				
	
			
			
			 Hauke Mehrtens
						Hauke Mehrtens
					
				
			
						parent
						
							b74f1f335a
						
					
				
				
					commit
					413c68d120
				
			| @@ -7,19 +7,33 @@ | |||||||
| include $(TOPDIR)/rules.mk | include $(TOPDIR)/rules.mk | ||||||
|  |  | ||||||
| PKG_NAME:=cmake | PKG_NAME:=cmake | ||||||
| PKG_VERSION:=3.13.2 | PKG_VERSION:=3.15.1 | ||||||
| PKG_CPE_ID:=cpe:/a:kitware:cmake | PKG_CPE_ID:=cpe:/a:kitware:cmake | ||||||
|  |  | ||||||
| PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz | ||||||
| PKG_SOURCE_URL:=https://cmake.org/files/v3.13/ \ | PKG_SOURCE_URL:=https://github.com/Kitware/CMake/releases/download/v$(PKG_VERSION)/ \ | ||||||
| 		https://fossies.org/linux/misc/ | 		https://cmake.org/files/v3.15/ | ||||||
| PKG_HASH:=c925e7d2c5ba511a69f43543ed7b4182a7d446c274c7480d0e42cd933076ae25 | PKG_HASH:=18dec548d8f8b04d53c60f9cedcebaa6762f8425339d1e2c889c383d3ccdd7f7 | ||||||
|  |  | ||||||
| HOST_BUILD_PARALLEL:=1 | HOST_BUILD_PARALLEL:=1 | ||||||
| HOST_CONFIGURE_PARALLEL:=1 | HOST_CONFIGURE_PARALLEL:=1 | ||||||
|  |  | ||||||
| include $(INCLUDE_DIR)/host-build.mk | include $(INCLUDE_DIR)/host-build.mk | ||||||
|  |  | ||||||
|  | # Workaround for GCC versions below 6.X and ccache | ||||||
|  | # Reference: https://github.com/openwrt/openwrt/pull/1929 | ||||||
|  | GCC_DMPVER_GREPCMD := grep -E '^(4\.[8-9]|[5]\.?)' | ||||||
|  | GCC_DMPVER_STRING := $(shell $(HOSTCC_NOCACHE) -dumpversion | $(GCC_DMPVER_GREPCMD)) | ||||||
|  | ifneq ($(GCC_DMPVER_STRING),) | ||||||
|  |   ifeq ($(CONFIG_CCACHE),y) | ||||||
|  |     $(info GCC version less than 6.0 detected, disabling CCACHE) | ||||||
|  |     HOST_CONFIGURE_VARS:=$(filter-out CC=% gcc%",$(HOST_CONFIGURE_VARS)) CC="$(HOSTCC_NOCACHE)" | ||||||
|  |     HOST_CONFIGURE_VARS:=$(filter-out CXX=% g++%",$(HOST_CONFIGURE_VARS)) CXX="$(HOSTCXX_NOCACHE)" | ||||||
|  |       else | ||||||
|  |     $(info GCC version greater or equal to 6.0 detected, no workaround set for CCACHE) | ||||||
|  |   endif | ||||||
|  | endif | ||||||
|  |  | ||||||
| HOST_CONFIGURE_VARS += \ | HOST_CONFIGURE_VARS += \ | ||||||
| 	MAKEFLAGS="$(HOST_JOBS)" \ | 	MAKEFLAGS="$(HOST_JOBS)" \ | ||||||
| 	CXXFLAGS="$(HOST_CFLAGS)" | 	CXXFLAGS="$(HOST_CFLAGS)" | ||||||
|   | |||||||
| @@ -1,6 +1,6 @@ | |||||||
| --- a/Tests/RunCMake/CMakeLists.txt | --- a/Tests/RunCMake/CMakeLists.txt | ||||||
| +++ b/Tests/RunCMake/CMakeLists.txt | +++ b/Tests/RunCMake/CMakeLists.txt | ||||||
| @@ -301,15 +301,6 @@ add_RunCMake_test(no_install_prefix) | @@ -325,15 +325,6 @@ add_RunCMake_test(no_install_prefix) | ||||||
|  add_RunCMake_test(configure_file) |  add_RunCMake_test(configure_file) | ||||||
|  add_RunCMake_test(CTestTimeoutAfterMatch) |  add_RunCMake_test(CTestTimeoutAfterMatch) | ||||||
|   |   | ||||||
| @@ -18,7 +18,7 @@ | |||||||
|    add_RunCMake_test(FindPkgConfig) |    add_RunCMake_test(FindPkgConfig) | ||||||
| --- a/Tests/CMakeLists.txt | --- a/Tests/CMakeLists.txt | ||||||
| +++ b/Tests/CMakeLists.txt | +++ b/Tests/CMakeLists.txt | ||||||
| @@ -437,13 +437,6 @@ if(BUILD_TESTING) | @@ -483,13 +483,6 @@ if(BUILD_TESTING) | ||||||
|   |   | ||||||
|    list(APPEND TEST_BUILD_DIRS ${CMake_TEST_INSTALL_PREFIX}) |    list(APPEND TEST_BUILD_DIRS ${CMake_TEST_INSTALL_PREFIX}) | ||||||
|   |   | ||||||
|   | |||||||
| @@ -20,7 +20,7 @@ Signed-off-by: Jo-Philipp Wich <jo@mein.io> | |||||||
| --- | --- | ||||||
| --- a/Utilities/cmcurl/CMakeLists.txt | --- a/Utilities/cmcurl/CMakeLists.txt | ||||||
| +++ b/Utilities/cmcurl/CMakeLists.txt | +++ b/Utilities/cmcurl/CMakeLists.txt | ||||||
| @@ -454,6 +454,14 @@ if(CMAKE_USE_OPENSSL) | @@ -453,6 +453,14 @@ if(CMAKE_USE_OPENSSL) | ||||||
|    set(USE_OPENSSL ON) |    set(USE_OPENSSL ON) | ||||||
|    set(HAVE_LIBCRYPTO ON) |    set(HAVE_LIBCRYPTO ON) | ||||||
|    set(HAVE_LIBSSL ON) |    set(HAVE_LIBSSL ON) | ||||||
|   | |||||||
| @@ -1,6 +1,6 @@ | |||||||
| --- a/bootstrap | --- a/bootstrap | ||||||
| +++ b/bootstrap | +++ b/bootstrap | ||||||
| @@ -1164,7 +1164,10 @@ int main(){ printf("1%c", (char)0x0a); r | @@ -1168,7 +1168,10 @@ int main(){ printf("1%c", (char)0x0a); r | ||||||
|  ' > "test.c" |  ' > "test.c" | ||||||
|  cmake_original_make_flags="${cmake_make_flags}" |  cmake_original_make_flags="${cmake_make_flags}" | ||||||
|  if [ "x${cmake_parallel_make}" != "x" ]; then |  if [ "x${cmake_parallel_make}" != "x" ]; then | ||||||
|   | |||||||
| @@ -1,25 +0,0 @@ | |||||||
| From 4ca5a815f2dfe9e1116cc2ccd5ddb56d0d00d12e Mon Sep 17 00:00:00 2001 |  | ||||||
| From: Brad King <brad.king@kitware.com> |  | ||||||
| Date: Thu, 7 Mar 2019 14:55:54 -0500 |  | ||||||
| Subject: [PATCH] C++ feature checks: Match warnings more strictly |  | ||||||
|  |  | ||||||
| Require the word "warning" to appear at the start of a line, after |  | ||||||
| whitespace, or after a `:`.  This is the same that CTest launchers use |  | ||||||
| to match warnings.  It avoids matching "warning" inside file paths. |  | ||||||
|  |  | ||||||
| Fixes: #19019 |  | ||||||
| --- |  | ||||||
|  Source/Checks/cm_cxx_features.cmake | 2 +- |  | ||||||
|  1 file changed, 1 insertion(+), 1 deletion(-) |  | ||||||
|  |  | ||||||
| --- a/Source/Checks/cm_cxx_features.cmake |  | ||||||
| +++ b/Source/Checks/cm_cxx_features.cmake |  | ||||||
| @@ -25,7 +25,7 @@ function(cm_check_cxx_feature name) |  | ||||||
|      # Filter out xcodebuild warnings. |  | ||||||
|      string(REGEX REPLACE "[^\n]* xcodebuild\\[[0-9]*:[0-9]*\\] warning: [^\n]*" "" check_output "${check_output}") |  | ||||||
|      # If using the feature causes warnings, treat it as broken/unavailable. |  | ||||||
| -    if(check_output MATCHES "[Ww]arning") |  | ||||||
| +    if(check_output MATCHES "(^|[ :])[Ww][Aa][Rr][Nn][Ii][Nn][Gg]") |  | ||||||
|        set(CMake_HAVE_CXX_${FEATURE} OFF CACHE INTERNAL "TRY_COMPILE" FORCE) |  | ||||||
|      endif() |  | ||||||
|      if(CMake_HAVE_CXX_${FEATURE}) |  | ||||||
		Reference in New Issue
	
	Block a user