mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 05:38:00 +00:00
c758d6427c
Deleted (upstreamed): - 020-Include-safe-ctype.h-after-C-standard-headers-to-avo.patch [1] - 021-libcc1-fix-vector-include.patch [2] All other patches automatically rebased. Note that selecting GCC 14, as of now, *will* result in build failures. The packages that fail to build will be fixed as they're found. Thus, GCC 13.x is the default, for the time being. [1] https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=9970b576b7e4ae337af1268395ff221348c4b34a [2] https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=5213047b1d50af63dfabb5e5649821a6cb157e33 Signed-off-by: Rui Salvaterra <rsalvaterra@gmail.com>
25 lines
522 B
Plaintext
25 lines
522 B
Plaintext
config GCC_VERSION_11
|
|
default y if GCC_USE_VERSION_11
|
|
bool
|
|
|
|
config GCC_VERSION_12
|
|
default y if GCC_USE_VERSION_12
|
|
bool
|
|
|
|
config GCC_VERSION_14
|
|
default y if GCC_USE_VERSION_14
|
|
bool
|
|
|
|
config GCC_VERSION
|
|
string
|
|
default EXTERNAL_GCC_VERSION if EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN
|
|
default "11.3.0" if GCC_VERSION_11
|
|
default "12.3.0" if GCC_VERSION_12
|
|
default "14.1.0" if GCC_VERSION_14
|
|
default "13.2.0"
|
|
|
|
config GCC_USE_DEFAULT_VERSION
|
|
bool
|
|
default y if !TOOLCHAINOPTS || GCC_USE_VERSION_13
|
|
imply KERNEL_WERROR
|