mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-26 12:00:48 -09:00
toolchain/Config.in: fix BR2_TOOLCHAIN_HAS_GCC_BUG_99140 number
While introducing gcc bug 99410 I've named BR2_TOOLCHAIN_HAS_GCC_BUG_ to
99140 that is wrong. So let's fix this by changing bug option to
BR2_TOOLCHAIN_HAS_GCC_BUG_99410.
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit 5df2f9ff1c)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
committed by
Peter Korsgaard
parent
1a45ad2bbe
commit
d928bd39dd
@@ -35,7 +35,7 @@ endif
|
||||
|
||||
BELLE_SIP_CFLAGS = $(TARGET_CFLAGS)
|
||||
|
||||
ifeq ($(BR2_TOOLCHAIN_HAS_GCC_BUG_99140),y)
|
||||
ifeq ($(BR2_TOOLCHAIN_HAS_GCC_BUG_99410),y)
|
||||
BELLE_SIP_CFLAGS += -O0
|
||||
endif
|
||||
|
||||
|
||||
@@ -188,7 +188,7 @@ config BR2_TOOLCHAIN_HAS_GCC_BUG_93847
|
||||
# Error: branch offset out of range on Nios II. This bug
|
||||
# no longer exists in gcc 8.x but reappeared on gcc 9.x and has been
|
||||
# fixed on gcc 11.x.
|
||||
config BR2_TOOLCHAIN_HAS_GCC_BUG_99140
|
||||
config BR2_TOOLCHAIN_HAS_GCC_BUG_99410
|
||||
bool
|
||||
default y if !BR2_TOOLCHAIN_GCC_AT_LEAST_8
|
||||
default y if BR2_TOOLCHAIN_GCC_AT_LEAST_9 && !BR2_TOOLCHAIN_GCC_AT_LEAST_11
|
||||
|
||||
Reference in New Issue
Block a user