|
@@ -49,6 +49,16 @@ config BR2_GCC_VERSION_14_X
|
|
|
depends on !BR2_microblaze
|
|
|
select BR2_TOOLCHAIN_GCC_AT_LEAST_14
|
|
|
|
|
|
+config BR2_GCC_VERSION_15_X
|
|
|
+ bool "gcc 15.x"
|
|
|
+ # powerpc spe support has been deprecated since gcc 8.x.
|
|
|
+ # https://gcc.gnu.org/ml/gcc/2018-04/msg00102.html
|
|
|
+ depends on !BR2_POWERPC_CPU_HAS_SPE
|
|
|
+ # Severely broken on Microblaze
|
|
|
+ # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=118280
|
|
|
+ depends on !BR2_microblaze
|
|
|
+ select BR2_TOOLCHAIN_GCC_AT_LEAST_15
|
|
|
+
|
|
|
endchoice
|
|
|
|
|
|
# libcilkrts was introduced in gcc 4.9 and removed in gcc 8.x
|
|
@@ -79,6 +89,7 @@ config BR2_GCC_VERSION
|
|
|
default "12.4.0" if BR2_GCC_VERSION_12_X
|
|
|
default "13.3.0" if BR2_GCC_VERSION_13_X
|
|
|
default "14.2.0" if BR2_GCC_VERSION_14_X
|
|
|
+ default "15.1.0" if BR2_GCC_VERSION_15_X
|
|
|
default "arc-2023.09-release" if BR2_GCC_VERSION_ARC
|
|
|
|
|
|
config BR2_EXTRA_GCC_CONFIG_OPTIONS
|