lede/toolchain/gcc/Config.version
Paul Spooren 5b43ebc046 build: remove GCC7 support
The development branch is now on version 10, we shouldn't drag to many
old versions and therefore drop at least 7.x.

Signed-off-by: Paul Spooren <mail@aparcar.org>
Acked-by: Rosen Penev <rosenp@gmail.com>
Acked-by: Rui Salvaterra <rsalvaterra@gmail.com>
Acked-by: Hauke Mehrtens <hauke@hauke-m.de>
Acked-by: Aleksander Jan Bajkowski <A.Bajkowski@stud.elka.pw.edu.pl>
2022-10-20 09:25:06 +08:00

25 lines
482 B
Plaintext

config GCC_VERSION_8
default y if GCC_USE_VERSION_8
default y if mips || mipsel || mips64 || mips64el
bool
config GCC_VERSION_9
default y if GCC_USE_VERSION_9
bool
config GCC_VERSION_10
default y if GCC_USE_VERSION_10
bool
config GCC_VERSION_12
default y if GCC_USE_VERSION_12
bool
config GCC_VERSION
string
default "8.4.0" if GCC_VERSION_8
default "9.3.0" if GCC_VERSION_9
default "10.3.0" if GCC_VERSION_10
default "12.2.0" if GCC_VERSION_12
default "11.3.0"