Bump Buildroot to 2021.02-rc3 (#1260)
* Rebase patches to Buildroot 2021.02-rc3 * Update Buildroot to 2021.02-rc3 * Declare Kernel headers to be Linux version 5.10 (since they are, and new Buildroot knows about 5.10)
This commit is contained in:
@@ -1,30 +0,0 @@
|
||||
From 4645f74eb668cc1cf876d1e9bef933591da7575c Mon Sep 17 00:00:00 2001
|
||||
From: Adam Duskett <aduskett@gmail.com>
|
||||
Date: Mon, 3 Feb 2020 06:21:57 -0800
|
||||
Subject: [PATCH] set minimum cmake version to 3.10
|
||||
|
||||
The CMakeLists.txt file uses the CMP0091 which is an MSVC runtime library flag
|
||||
abstraction macro.
|
||||
|
||||
Because we are not building ninja for Microsoft, it is safe to remove this
|
||||
macro and set the minimum version to 3.10.
|
||||
|
||||
Signed-off-by: Adam Duskett <aduskett@gmail.com>
|
||||
---
|
||||
CMakeLists.txt | 3 +--
|
||||
1 file changed, 1 insertion(+), 2 deletions(-)
|
||||
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index 60fd8a1..a040e0b 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -1,5 +1,4 @@
|
||||
-cmake_minimum_required(VERSION 3.15)
|
||||
-cmake_policy(SET CMP0091 NEW)
|
||||
+cmake_minimum_required(VERSION 3.10)
|
||||
project(ninja)
|
||||
|
||||
if(CMAKE_BUILD_TYPE MATCHES "Release")
|
||||
--
|
||||
2.24.1
|
||||
|
||||
@@ -1,29 +0,0 @@
|
||||
From 87caa8c4bc536f745aceed757ce8a492fbdba84f Mon Sep 17 00:00:00 2001
|
||||
From: Adam Duskett <aduskett@gmail.com>
|
||||
Date: Mon, 3 Feb 2020 07:36:58 -0800
|
||||
Subject: [PATCH] remove fdiagnostics-color from make command
|
||||
|
||||
-fdiagnostics-color was introduced in gcc 4.9 and the minimum supported version
|
||||
that Buildroot supports is 4.8.
|
||||
|
||||
Signed-off-by: Adam Duskett <aduskett@gmail.com>
|
||||
---
|
||||
CMakeLists.txt | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index a040e0b..af8010f 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -18,7 +18,7 @@ if(MSVC)
|
||||
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4 /GR- /Zc:__cplusplus")
|
||||
else()
|
||||
- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-deprecated -fdiagnostics-color")
|
||||
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-deprecated")
|
||||
endif()
|
||||
|
||||
find_program(RE2C re2c)
|
||||
--
|
||||
2.24.1
|
||||
|
||||
@@ -1,56 +0,0 @@
|
||||
From 7982ecebe1c1c41e82779a65fa2d93f19ffd755f Mon Sep 17 00:00:00 2001
|
||||
From: Yegor Yefremov <yegorslists@googlemail.com>
|
||||
Date: Wed, 5 Feb 2020 12:28:44 +0100
|
||||
Subject: [PATCH] CMake: fix object library usage
|
||||
|
||||
Object libraries cannot be use in target_link_libraries() command
|
||||
as they are no normal binary files like *.a or *.so but a collection
|
||||
of object files.
|
||||
|
||||
See add_library() definition for details.
|
||||
|
||||
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
|
||||
---
|
||||
CMakeLists.txt | 9 ++++-----
|
||||
1 file changed, 4 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index af8010f..028a7bb 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -83,8 +83,7 @@ target_compile_definitions(libninja PRIVATE _WIN32_WINNT=0x0601 __USE_MINGW_ANSI
|
||||
endif()
|
||||
|
||||
# Main executable is library plus main() function.
|
||||
-add_executable(ninja src/ninja.cc)
|
||||
-target_link_libraries(ninja PRIVATE libninja libninja-re2c)
|
||||
+add_executable(ninja src/ninja.cc $<TARGET_OBJECTS:libninja> $<TARGET_OBJECTS:libninja-re2c>)
|
||||
|
||||
# Tests all build into ninja_test executable.
|
||||
add_executable(ninja_test
|
||||
@@ -106,11 +105,12 @@ add_executable(ninja_test
|
||||
src/subprocess_test.cc
|
||||
src/test.cc
|
||||
src/util_test.cc
|
||||
+ $<TARGET_OBJECTS:libninja>
|
||||
+ $<TARGET_OBJECTS:libninja-re2c>
|
||||
)
|
||||
if(WIN32)
|
||||
target_sources(ninja_test PRIVATE src/includes_normalize_test.cc src/msvc_helper_test.cc)
|
||||
endif()
|
||||
-target_link_libraries(ninja_test PRIVATE libninja libninja-re2c)
|
||||
|
||||
foreach(perftest
|
||||
build_log_perftest
|
||||
@@ -120,8 +120,7 @@ foreach(perftest
|
||||
hash_collision_bench
|
||||
manifest_parser_perftest
|
||||
)
|
||||
- add_executable(${perftest} src/${perftest}.cc)
|
||||
- target_link_libraries(${perftest} PRIVATE libninja libninja-re2c)
|
||||
+ add_executable(${perftest} src/${perftest}.cc $<TARGET_OBJECTS:libninja> $<TARGET_OBJECTS:libninja-re2c>)
|
||||
endforeach()
|
||||
|
||||
enable_testing()
|
||||
--
|
||||
2.17.0
|
||||
@@ -1,3 +1,3 @@
|
||||
# Locally generated
|
||||
sha256 3810318b08489435f8efc19c05525e80a993af5a55baa0dfeae0465a9d45f99f ninja-1.10.0.tar.gz
|
||||
sha256 eb7e9ab9690124c5c9f42bdc81383d886a3dede26345b6ed15bbad7caf81f7ea COPYING
|
||||
sha256 ce35865411f0490368a8fc383f29071de6690cbadc27704734978221f25e2bed ninja-1.10.2.tar.gz
|
||||
sha256 eb7e9ab9690124c5c9f42bdc81383d886a3dede26345b6ed15bbad7caf81f7ea COPYING
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
NINJA_VERSION = 1.10.0
|
||||
NINJA_VERSION = 1.10.2
|
||||
NINJA_SITE = $(call github,ninja-build,ninja,v$(NINJA_VERSION))
|
||||
NINJA_LICENSE = Apache-2.0
|
||||
NINJA_LICENSE_FILES = COPYING
|
||||
|
||||
Reference in New Issue
Block a user