mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 22:26:31 +00:00
toolchain/gcc: use depends on instead of depends
This commit is contained in:
parent
f2057583bd
commit
5a5dd825d7
@ -14,37 +14,36 @@ choice
|
|||||||
bool "gcc 3.4.6"
|
bool "gcc 3.4.6"
|
||||||
|
|
||||||
config BR2_GCC_VERSION_4_0_4
|
config BR2_GCC_VERSION_4_0_4
|
||||||
depends !BR2_avr32 && !BR2_nios2
|
depends on !BR2_avr32 && !BR2_nios2
|
||||||
depends BR2_DEPRECATED
|
depends on BR2_DEPRECATED
|
||||||
bool "gcc 4.0.4"
|
bool "gcc 4.0.4"
|
||||||
|
|
||||||
config BR2_GCC_VERSION_4_1_2
|
config BR2_GCC_VERSION_4_1_2
|
||||||
depends !BR2_nios2
|
depends on !BR2_nios2
|
||||||
depends BR2_EXT_GCC_VERSION_4_1_2
|
depends on BR2_EXT_GCC_VERSION_4_1_2
|
||||||
bool "gcc 4.1.2"
|
bool "gcc 4.1.2"
|
||||||
|
|
||||||
config BR2_GCC_VERSION_4_2_1
|
config BR2_GCC_VERSION_4_2_1
|
||||||
depends !BR2_nios2
|
depends on !BR2_nios2
|
||||||
depends BR2_EXT_GCC_VERSION_4_2_1
|
depends on BR2_EXT_GCC_VERSION_4_2_1
|
||||||
bool "gcc 4.2.1"
|
bool "gcc 4.2.1"
|
||||||
|
|
||||||
config BR2_GCC_VERSION_4_2_3
|
config BR2_GCC_VERSION_4_2_3
|
||||||
depends !BR2_nios2 && !BR2_avr32
|
depends on !BR2_avr32 && !BR2_nios2
|
||||||
bool "gcc 4.2.3"
|
bool "gcc 4.2.3"
|
||||||
|
|
||||||
config BR2_GCC_VERSION_4_2_4
|
config BR2_GCC_VERSION_4_2_4
|
||||||
depends !BR2_nios2 && !BR2_avr32
|
depends on !BR2_avr32 && !BR2_nios2
|
||||||
bool "gcc 4.2.4"
|
bool "gcc 4.2.4"
|
||||||
|
|
||||||
# config BR2_GCC_VERSION_4_3
|
# config BR2_GCC_VERSION_4_3
|
||||||
# depends !BR2_avr32 && !BR2_nios2
|
# depends !BR2_avr32 && !BR2_nios2
|
||||||
# select BR2_GCC_IS_SNAP
|
# select BR2_GCC_IS_SNAP
|
||||||
# bool "gcc 4.3"
|
# bool "gcc 4.3"
|
||||||
|
|
||||||
endchoice
|
endchoice
|
||||||
|
|
||||||
config BR2_GCC_IS_SNAP
|
config BR2_GCC_IS_SNAP
|
||||||
depends !BR2_avr32
|
depends on !BR2_avr32
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
|
||||||
@ -61,7 +60,7 @@ config BR2_GCC_SUPPORTS_FINEGRAINEDMTUNE
|
|||||||
config BR2_GCC_SNAP_DATE
|
config BR2_GCC_SNAP_DATE
|
||||||
string "GCC snapshot date"
|
string "GCC snapshot date"
|
||||||
default "20070921"
|
default "20070921"
|
||||||
depends BR2_GCC_IS_SNAP
|
depends on BR2_GCC_IS_SNAP
|
||||||
help
|
help
|
||||||
Enter snapshot date to use for gcc. Format is:
|
Enter snapshot date to use for gcc. Format is:
|
||||||
YYYYMMDD
|
YYYYMMDD
|
||||||
|
@ -8,7 +8,7 @@ config BR2_PACKAGE_GCC_TARGET
|
|||||||
config BR2_EXTRA_TARGET_GCC_CONFIG_OPTIONS
|
config BR2_EXTRA_TARGET_GCC_CONFIG_OPTIONS
|
||||||
string "Additional target gcc options"
|
string "Additional target gcc options"
|
||||||
default ""
|
default ""
|
||||||
depends BR2_PACKAGE_GCC_TARGET
|
depends on BR2_PACKAGE_GCC_TARGET
|
||||||
help
|
help
|
||||||
Any additional target gcc options you may want to include....
|
Any additional target gcc options you may want to include....
|
||||||
Including, but not limited to --disable-checking etc.
|
Including, but not limited to --disable-checking etc.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user