From a58b29ded7a6d3209aad1d2ff30b5a38d692a45f Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Tue, 20 Dec 2022 00:58:19 +0100 Subject: [PATCH] toolchain/gcc: Fix GCC version check The version check which sets GCC_VERSION_FILE to the correct value only worked when the advanced options menu was active and not when it was not active. Thank you Tony Butler for the fix. Signed-off-by: Hauke Mehrtens --- toolchain/gcc/common.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolchain/gcc/common.mk b/toolchain/gcc/common.mk index 6661b0aa38..ea2e2634b6 100644 --- a/toolchain/gcc/common.mk +++ b/toolchain/gcc/common.mk @@ -178,7 +178,7 @@ define Host/SetToolchainInfo endef -ifdef CONFIG_GCC_USE_VERSION_12 +ifeq ($(GCC_MAJOR_VERSION),12) GCC_VERSION_FILE:=gcc/genversion.cc else GCC_VERSION_FILE:=gcc/version.c -- 2.30.2