toolchain/gcc: switch to version 7 by default

This commit is contained in:
CN_SZTL 2019-10-13 11:48:30 +08:00
parent 73b019cd34
commit 1cc26c5e9a
No known key found for this signature in database
GPG Key ID: 6850B6345C862176
2 changed files with 4 additions and 11 deletions

View File

@ -2,16 +2,10 @@
choice
prompt "GCC compiler Version" if TOOLCHAINOPTS
default GCC_USE_VERSION_7_1_ARC if arc
default GCC_USE_VERSION_7
help
Select the version of gcc you wish to use.
config GCC_USE_VERSION_7_1_ARC
select GCC_VERSION_7_1_ARC
bool "gcc 7.1.x with support of ARC cores"
depends on arc
config GCC_USE_VERSION_5
bool "gcc 5.x"
depends on !arc

View File

@ -6,8 +6,8 @@ config GCC_VERSION_5
default y if GCC_USE_VERSION_5
bool
config GCC_VERSION_7
default y if GCC_USE_VERSION_7
config GCC_VERSION_8
default y if GCC_USE_VERSION_8
bool
config GCC_VERSION_9
@ -17,10 +17,9 @@ config GCC_VERSION_9
config GCC_VERSION
string
default "5.5.0" if GCC_VERSION_5
default "arc-2017.09-release" if GCC_VERSION_7_1_ARC
default "7.4.0" if GCC_VERSION_7
default "9.2.0" if GCC_VERSION_9
default "8.3.0"
default "8.3.0" if GCC_VERSION_8
default "7.4.0"
config GCC_USE_IREMAP
bool