Skip to content
Snippets Groups Projects
Commit a4e90e2c authored by Felix Fietkau's avatar Felix Fietkau
Browse files

toolchain: get rid of GCC_VERSION_5 config symbol


Replace it with !GCC_VERSION_4_8 to be more future compatible

Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent e0319405
No related branches found
No related tags found
No related merge requests found
...@@ -236,7 +236,7 @@ menu "Global build settings" ...@@ -236,7 +236,7 @@ menu "Global build settings"
config PKG_CC_STACKPROTECTOR_STRONG config PKG_CC_STACKPROTECTOR_STRONG
bool "Strong" bool "Strong"
select SSP_SUPPORT if !USE_MUSL select SSP_SUPPORT if !USE_MUSL
depends on GCC_VERSION_5 depends on !GCC_VERSION_4_8
depends on KERNEL_CC_STACKPROTECTOR_STRONG depends on KERNEL_CC_STACKPROTECTOR_STRONG
endchoice endchoice
...@@ -251,7 +251,7 @@ menu "Global build settings" ...@@ -251,7 +251,7 @@ menu "Global build settings"
config KERNEL_CC_STACKPROTECTOR_REGULAR config KERNEL_CC_STACKPROTECTOR_REGULAR
bool "Regular" bool "Regular"
config KERNEL_CC_STACKPROTECTOR_STRONG config KERNEL_CC_STACKPROTECTOR_STRONG
depends on GCC_VERSION_5 depends on !GCC_VERSION_4_8
bool "Strong" bool "Strong"
endchoice endchoice
......
...@@ -13,7 +13,6 @@ choice ...@@ -13,7 +13,6 @@ choice
depends on arc depends on arc
config GCC_USE_VERSION_5 config GCC_USE_VERSION_5
select GCC_VERSION_5
bool "gcc 5.x" bool "gcc 5.x"
depends on !arc depends on !arc
......
...@@ -10,7 +10,3 @@ config GCC_VERSION ...@@ -10,7 +10,3 @@ config GCC_VERSION
config GCC_VERSION_4_8 config GCC_VERSION_4_8
bool bool
default y if GCC_VERSION_4_8_ARC default y if GCC_VERSION_4_8_ARC
config GCC_VERSION_5
default y if (!TOOLCHAINOPTS && !arc)
bool
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment