mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-12-10 22:52:11 -05:00
toolchain: gcc: switch default to 14
Its time to use GCC14 as the default compiler instead of GCC13. Link: https://github.com/openwrt/openwrt/pull/18597 Signed-off-by: Robert Marko <robimarko@gmail.com>
This commit is contained in:
parent
ddae97e4d8
commit
5c8301e800
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
choice
|
choice
|
||||||
prompt "GCC compiler Version" if TOOLCHAINOPTS
|
prompt "GCC compiler Version" if TOOLCHAINOPTS
|
||||||
default GCC_USE_VERSION_13
|
default GCC_USE_VERSION_14
|
||||||
help
|
help
|
||||||
Select the version of gcc you wish to use.
|
Select the version of gcc you wish to use.
|
||||||
|
|
||||||
|
|||||||
@ -6,8 +6,8 @@ config GCC_VERSION_12
|
|||||||
default y if GCC_USE_VERSION_12
|
default y if GCC_USE_VERSION_12
|
||||||
bool
|
bool
|
||||||
|
|
||||||
config GCC_VERSION_14
|
config GCC_VERSION_13
|
||||||
default y if GCC_USE_VERSION_14
|
default y if GCC_USE_VERSION_13
|
||||||
bool
|
bool
|
||||||
|
|
||||||
config GCC_VERSION
|
config GCC_VERSION
|
||||||
@ -15,10 +15,10 @@ config GCC_VERSION
|
|||||||
default EXTERNAL_GCC_VERSION if EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN
|
default EXTERNAL_GCC_VERSION if EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN
|
||||||
default "11.3.0" if GCC_VERSION_11
|
default "11.3.0" if GCC_VERSION_11
|
||||||
default "12.3.0" if GCC_VERSION_12
|
default "12.3.0" if GCC_VERSION_12
|
||||||
default "14.2.0" if GCC_VERSION_14
|
default "13.3.0" if GCC_VERSION_13
|
||||||
default "13.3.0"
|
default "14.2.0"
|
||||||
|
|
||||||
config GCC_USE_DEFAULT_VERSION
|
config GCC_USE_DEFAULT_VERSION
|
||||||
bool
|
bool
|
||||||
default y if !TOOLCHAINOPTS || GCC_USE_VERSION_13
|
default y if !TOOLCHAINOPTS || GCC_USE_VERSION_14
|
||||||
imply KERNEL_WERROR
|
imply KERNEL_WERROR
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user