2010-03-15 20:42:55 +00:00
|
|
|
# Menu for the cross GDB
|
|
|
|
|
2010-12-09 17:55:15 +00:00
|
|
|
config STATIC_TOOLCHAIN
|
|
|
|
select GDB_CROSS_STATIC if GDB_CROSS
|
|
|
|
|
2010-03-15 20:42:55 +00:00
|
|
|
config GDB_CROSS
|
|
|
|
bool
|
|
|
|
prompt "Cross-gdb"
|
|
|
|
default y
|
|
|
|
select GDB_GDBSERVER if ! BARE_METAL
|
|
|
|
help
|
|
|
|
Build and install a cross-gdb for the target, to run on host.
|
|
|
|
|
|
|
|
if GDB_CROSS
|
|
|
|
|
2010-04-15 17:54:00 +00:00
|
|
|
config GDB_CROSS_STATIC
|
|
|
|
bool
|
|
|
|
prompt "Build a static cross gdb"
|
2011-10-14 20:44:24 +00:00
|
|
|
select WANTS_STATIC_LINK
|
2010-04-15 17:54:00 +00:00
|
|
|
help
|
|
|
|
A static cross gdb can be usefull if you debug on a machine that is
|
|
|
|
not the one that is used to compile the toolchain.
|
|
|
|
|
|
|
|
That way, you can share the cross-gdb without installing a toolchain
|
|
|
|
on every machine that will be used to debug target programs.
|
|
|
|
|
2011-10-08 20:57:21 +00:00
|
|
|
config GDB_CROSS_PYTHON
|
|
|
|
bool
|
|
|
|
prompt "Enable python scripting"
|
|
|
|
depends on ! GDB_CROSS_STATIC
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Say 'y' if you want to use Python scripting inside gdb.
|
|
|
|
Say 'n' if you do not want to.
|
|
|
|
|
|
|
|
Beware that enabling Python scripting could render the gdb
|
|
|
|
executable non-functional if you move it to another machine.
|
|
|
|
Building a static gdb can help in this regard, although there
|
|
|
|
have been reports of problems when linking gdb to the static
|
|
|
|
libpython.a. This should be fixed in gdb >=7.3. YMMV.
|
2011-11-23 05:15:27 +00:00
|
|
|
|
|
|
|
config GDB_CROSS_EXTRA_CONFIG_ARRAY
|
|
|
|
string
|
|
|
|
prompt "Cross-gdb extra config"
|
|
|
|
default ""
|
|
|
|
help
|
|
|
|
Extra flags to pass onto ./configure when configuring the gdb cross.
|
|
|
|
|
2010-03-15 20:42:55 +00:00
|
|
|
endif # GDB_CROSS
|