package/gcc: refactor nios2 obsolete handling into common gcc code
Commit 69cb625947
("package/gcc: enable
obsolete nios2 target") added some handling of nios2 with gcc 14.x,
duplicated between gcc-initial and gcc-final. Let's deduplicate this
logic into the common package/gcc/gcc.mk code.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
69cb625947
commit
1c8bdef542
@ -117,11 +117,6 @@ 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 += \
|
||||
|
@ -42,11 +42,6 @@ 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)
|
||||
|
||||
|
@ -293,6 +293,11 @@ HOST_GCC_COMMON_CONF_OPTS += \
|
||||
--with-long-double-128
|
||||
endif
|
||||
|
||||
# allow to build gcc 14.x
|
||||
ifeq ($(BR2_nios2),y)
|
||||
HOST_GCC_COMMON_CONF_OPTS += --enable-obsolete
|
||||
endif
|
||||
|
||||
HOST_GCC_COMMON_TOOLCHAIN_WRAPPER_ARGS += -DBR_CROSS_PATH_SUFFIX='".br_real"'
|
||||
|
||||
# For gcc-initial, we need to tell gcc that the C library will be
|
||||
|
Loading…
Reference in New Issue
Block a user