package/gcc: enable obsolete nios2 target

GCC 14.1.0 deprecated NIOS2 so we need to enable it explicitely.

Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Waldemar Brodkorb 2024-05-12 18:19:15 +02:00 committed by Thomas Petazzoni
parent 8fbac15e4c
commit 69cb625947
2 changed files with 10 additions and 0 deletions

View File

@ -117,6 +117,11 @@ else
HOST_GCC_FINAL_CONF_OPTS += --disable-libgomp
endif
# allow to build gcc 14.x
ifeq ($(BR2_nios2),y)
HOST_GCC_FINAL_CONF_OPTS += --enable-obsolete
endif
# End with user-provided options, so that they can override previously
# defined options.
HOST_GCC_FINAL_CONF_OPTS += \

View File

@ -42,6 +42,11 @@ HOST_GCC_INITIAL_CONF_OPTS = \
--disable-largefile \
$(call qstrip,$(BR2_EXTRA_GCC_CONFIG_OPTIONS))
# allow to build gcc 14.x
ifeq ($(BR2_nios2),y)
HOST_GCC_INITIAL_CONF_OPTS += --enable-obsolete
endif
HOST_GCC_INITIAL_CONF_ENV = \
$(HOST_GCC_COMMON_CONF_ENV)