2007-05-17 16:22:51 +00:00
|
|
|
# GDB menu
|
|
|
|
|
2008-10-10 14:30:44 +00:00
|
|
|
config DEBUG_gdb
|
2007-05-17 16:22:51 +00:00
|
|
|
help
|
|
|
|
Enable gdb for the target
|
|
|
|
|
2010-03-15 20:42:55 +00:00
|
|
|
source "config/debug/gdb.in.cross"
|
|
|
|
source "config/debug/gdb.in.native"
|
|
|
|
source "config/debug/gdb.in.gdbserver"
|
2009-03-26 18:58:13 +00:00
|
|
|
|
2007-05-17 16:22:51 +00:00
|
|
|
choice
|
|
|
|
bool
|
|
|
|
prompt "gdb version"
|
2008-06-19 15:33:33 +00:00
|
|
|
depends on GDB_CROSS || GDB_NATIVE || GDB_GDBSERVER
|
2009-09-13 16:38:06 +00:00
|
|
|
# Don't remove next line
|
|
|
|
# CT_INSERT_VERSION_BELOW
|
2007-05-17 16:22:51 +00:00
|
|
|
|
2010-03-30 19:22:23 +00:00
|
|
|
config GDB_V_7_1
|
|
|
|
bool
|
|
|
|
prompt "7.1 (EXPERIMENTAL)"
|
|
|
|
depends on EXPERIMENTAL
|
|
|
|
select GDB_7_0_or_later
|
|
|
|
|
2010-01-08 23:54:46 +00:00
|
|
|
config GDB_V_7_0_1
|
|
|
|
bool
|
|
|
|
prompt "7.0.1 (EXPERIMENTAL)"
|
|
|
|
depends on EXPERIMENTAL
|
2010-03-20 17:49:15 +00:00
|
|
|
select GDB_7_0_or_later
|
2010-01-08 23:54:46 +00:00
|
|
|
|
2009-10-28 17:34:49 +00:00
|
|
|
config GDB_V_7_0
|
|
|
|
bool
|
|
|
|
prompt "7.0 (EXPERIMENTAL)"
|
|
|
|
depends on EXPERIMENTAL
|
2010-03-20 17:49:15 +00:00
|
|
|
select GDB_7_0_or_later
|
2009-10-28 17:34:49 +00:00
|
|
|
|
2009-09-13 15:51:33 +00:00
|
|
|
config GDB_V_6_8
|
2007-05-17 16:22:51 +00:00
|
|
|
bool
|
2009-09-13 15:51:33 +00:00
|
|
|
prompt "6.8"
|
2007-05-17 16:22:51 +00:00
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
2010-03-20 17:49:15 +00:00
|
|
|
config GDB_7_0_or_later
|
|
|
|
bool
|
|
|
|
|
2007-05-17 16:22:51 +00:00
|
|
|
config GDB_VERSION
|
|
|
|
string
|
2009-09-13 16:38:06 +00:00
|
|
|
# Don't remove next line
|
|
|
|
# CT_INSERT_VERSION_STRING_BELOW
|
2010-03-30 19:22:23 +00:00
|
|
|
default "7.1" if GDB_V_7_1
|
2010-01-08 23:54:46 +00:00
|
|
|
default "7.0.1" if GDB_V_7_0_1
|
2009-10-28 17:34:49 +00:00
|
|
|
default "7.0" if GDB_V_7_0
|
2008-05-02 21:54:46 +00:00
|
|
|
default "6.8" if GDB_V_6_8
|