mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-15 18:03:30 +00:00
toolchain/gcc: switch to version 11 by default
This commit is contained in:
parent
3060ad304a
commit
9e2144f153
@ -298,13 +298,13 @@ menu "Target Images"
|
|||||||
depends on USES_BOOT_PART
|
depends on USES_BOOT_PART
|
||||||
default 8 if TARGET_apm821xx_sata
|
default 8 if TARGET_apm821xx_sata
|
||||||
default 64 if TARGET_bcm27xx
|
default 64 if TARGET_bcm27xx
|
||||||
default 32 if TARGET_rockchip
|
default 64 if TARGET_rockchip
|
||||||
default 16
|
default 16
|
||||||
|
|
||||||
config TARGET_ROOTFS_PARTSIZE
|
config TARGET_ROOTFS_PARTSIZE
|
||||||
int "Root filesystem partition size (in MB)"
|
int "Root filesystem partition size (in MB)"
|
||||||
depends on USES_ROOTFS_PART || TARGET_ROOTFS_EXT4FS || TARGET_omap || TARGET_sunxi || TARGET_uml
|
depends on USES_ROOTFS_PART || TARGET_ROOTFS_EXT4FS || TARGET_omap || TARGET_sunxi || TARGET_uml
|
||||||
default 480
|
default 400
|
||||||
help
|
help
|
||||||
Select the root filesystem partition size.
|
Select the root filesystem partition size.
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
choice
|
choice
|
||||||
prompt "GCC compiler Version" if TOOLCHAINOPTS
|
prompt "GCC compiler Version" if TOOLCHAINOPTS
|
||||||
default GCC_USE_VERSION_8
|
default GCC_USE_VERSION_11
|
||||||
help
|
help
|
||||||
Select the version of gcc you wish to use.
|
Select the version of gcc you wish to use.
|
||||||
|
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
config GCC_VERSION_7
|
config GCC_VERSION_7
|
||||||
default y if GCC_USE_VERSION_7
|
default y if GCC_USE_VERSION_7
|
||||||
bool
|
bool
|
||||||
|
|
||||||
|
config GCC_VERSION_8
|
||||||
|
default y if GCC_USE_VERSION_8
|
||||||
|
bool
|
||||||
|
|
||||||
config GCC_VERSION_9
|
config GCC_VERSION_9
|
||||||
default y if GCC_USE_VERSION_9
|
default y if GCC_USE_VERSION_9
|
||||||
@ -10,10 +14,6 @@ config GCC_VERSION_10
|
|||||||
default y if GCC_USE_VERSION_10
|
default y if GCC_USE_VERSION_10
|
||||||
bool
|
bool
|
||||||
|
|
||||||
config GCC_VERSION_11
|
|
||||||
default y if GCC_USE_VERSION_11
|
|
||||||
bool
|
|
||||||
|
|
||||||
config GCC_VERSION_12
|
config GCC_VERSION_12
|
||||||
default y if GCC_USE_VERSION_12
|
default y if GCC_USE_VERSION_12
|
||||||
bool
|
bool
|
||||||
@ -21,11 +21,11 @@ config GCC_VERSION_12
|
|||||||
config GCC_VERSION
|
config GCC_VERSION
|
||||||
string
|
string
|
||||||
default "7.5.0" if GCC_VERSION_7
|
default "7.5.0" if GCC_VERSION_7
|
||||||
|
default "8.4.0" if GCC_VERSION_8
|
||||||
default "9.3.0" if GCC_VERSION_9
|
default "9.3.0" if GCC_VERSION_9
|
||||||
default "10.3.0" if GCC_VERSION_10
|
default "10.3.0" if GCC_VERSION_10
|
||||||
default "11.3.0" if GCC_VERSION_11
|
|
||||||
default "12.2.0" if GCC_VERSION_12
|
default "12.2.0" if GCC_VERSION_12
|
||||||
default "8.4.0"
|
default "11.3.0"
|
||||||
|
|
||||||
config GCC_USE_IREMAP
|
config GCC_USE_IREMAP
|
||||||
bool
|
bool
|
||||||
|
Loading…
Reference in New Issue
Block a user