tool_chain: update gcc to version 10.3.0

Issue #4094
This commit is contained in:
Christian Prochaska
2021-03-29 19:36:20 +02:00
committed by Christian Helmuth
parent 6639261126
commit 9c05cda6e7
26 changed files with 364 additions and 226 deletions

View File

@@ -148,7 +148,7 @@ check_tool = $(if $(shell which $(1)),,$(error Need to have '$(1)' installed.))
# Empty DST_DIRS is interpreted as a tool-chain agnostic target, e.g., clean.
#
ifneq ($(DST_DIRS),)
REQUIRED_GCC_VERSION ?= 8.3.0
REQUIRED_GCC_VERSION ?= 10.3.0
GCC_VERSION := $(filter $(REQUIRED_GCC_VERSION) ,$(shell $(CUSTOM_CXX) --version))
ifneq ($(GCC_VERSION), $(REQUIRED_GCC_VERSION))
$(error "$(CUSTOM_CXX) version $(REQUIRED_GCC_VERSION) is required")