Selaa lähdekoodia

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 5df2f9ff1cc15f3d71514b7c5ff6bd6380f57fd0)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Giulio Benetti 3 vuotta sitten
vanhempi
commit
6ff163ac0f
2 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 1 1
      package/belle-sip/belle-sip.mk
  2. 1 1
      toolchain/Config.in

+ 1 - 1
package/belle-sip/belle-sip.mk

@@ -35,7 +35,7 @@ endif
 
 
 BELLE_SIP_CFLAGS = $(TARGET_CFLAGS)
 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
 BELLE_SIP_CFLAGS += -O0
 endif
 endif
 
 

+ 1 - 1
toolchain/Config.in

@@ -186,7 +186,7 @@ config BR2_TOOLCHAIN_HAS_GCC_BUG_93847
 # Error: branch offset out of range on Nios II. This bug
 # 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
 # no longer exists in gcc 8.x but reappeared on gcc 9.x and has been
 # fixed on gcc 11.x.
 # fixed on gcc 11.x.
-config BR2_TOOLCHAIN_HAS_GCC_BUG_99140
+config BR2_TOOLCHAIN_HAS_GCC_BUG_99410
 	bool
 	bool
 	default y if !BR2_TOOLCHAIN_GCC_AT_LEAST_8
 	default y if !BR2_TOOLCHAIN_GCC_AT_LEAST_8
 	default y if BR2_TOOLCHAIN_GCC_AT_LEAST_9 && !BR2_TOOLCHAIN_GCC_AT_LEAST_11
 	default y if BR2_TOOLCHAIN_GCC_AT_LEAST_9 && !BR2_TOOLCHAIN_GCC_AT_LEAST_11