|
@@ -3,7 +3,6 @@ config BR2_PACKAGE_HOST_GDB_ARCH_SUPPORTS
|
|
default y
|
|
default y
|
|
depends on !((BR2_arm || BR2_armeb) && BR2_BINFMT_FLAT)
|
|
depends on !((BR2_arm || BR2_armeb) && BR2_BINFMT_FLAT)
|
|
depends on !BR2_microblaze
|
|
depends on !BR2_microblaze
|
|
- depends on !BR2_or1k
|
|
|
|
|
|
|
|
comment "Host GDB Options"
|
|
comment "Host GDB Options"
|
|
depends on !BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY
|
|
depends on !BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY
|
|
@@ -49,9 +48,13 @@ choice
|
|
|
|
|
|
config BR2_GDB_VERSION_10
|
|
config BR2_GDB_VERSION_10
|
|
bool "gdb 10.x"
|
|
bool "gdb 10.x"
|
|
|
|
+ # gdbserver support missing
|
|
|
|
+ depends on !BR2_or1k
|
|
|
|
|
|
config BR2_GDB_VERSION_11
|
|
config BR2_GDB_VERSION_11
|
|
bool "gdb 11.x"
|
|
bool "gdb 11.x"
|
|
|
|
+ # gdbserver support missing
|
|
|
|
+ depends on !BR2_or1k
|
|
|
|
|
|
config BR2_GDB_VERSION_12
|
|
config BR2_GDB_VERSION_12
|
|
bool "gdb 12.x"
|
|
bool "gdb 12.x"
|
|
@@ -65,6 +68,6 @@ config BR2_GDB_VERSION
|
|
string
|
|
string
|
|
default "arc-2020.09-release-gdb" if BR2_arc
|
|
default "arc-2020.09-release-gdb" if BR2_arc
|
|
default "10.2" if BR2_GDB_VERSION_10
|
|
default "10.2" if BR2_GDB_VERSION_10
|
|
- default "11.2" if BR2_GDB_VERSION_11 || !BR2_PACKAGE_HOST_GDB
|
|
|
|
- default "12.1" if BR2_GDB_VERSION_12
|
|
|
|
|
|
+ default "11.2" if BR2_GDB_VERSION_11 || (!BR2_PACKAGE_HOST_GDB && !BR2_or1k)
|
|
|
|
+ default "12.1" if BR2_GDB_VERSION_12 || (!BR2_PACKAGE_HOST_GDB && BR2_or1k)
|
|
depends on BR2_PACKAGE_GDB || BR2_PACKAGE_HOST_GDB
|
|
depends on BR2_PACKAGE_GDB || BR2_PACKAGE_HOST_GDB
|