summaryrefslogtreecommitdiff
path: root/toolchain/gdb/Config.in
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2005-01-23 11:09:40 +0000
committerEric Andersen <andersen@codepoet.org>2005-01-23 11:09:40 +0000
commit7be239c03f7b5366ad0c4c118955492c1529861c (patch)
treee5976de2891d3ac1c1b912b80aed5c9e484cc82f /toolchain/gdb/Config.in
parentda7381c86957d56767f152a881eabb07f3523b2e (diff)
Patch from acmay: http://bugs.uclibc.org/view.php?id=50
0000050: gdb_server and gdb_client fixes and split Here is a patch with 2 issues. gdbserver does not depend on ncurses (just the full gdb needs it) Split out gdb client config option, to be separate from gdbserver. If you build gdb client for the host once it does not need to be rebuilt when the rest of libs change. So I build it and save it off.
Diffstat (limited to 'toolchain/gdb/Config.in')
-rw-r--r--toolchain/gdb/Config.in16
1 files changed, 9 insertions, 7 deletions
diff --git a/toolchain/gdb/Config.in b/toolchain/gdb/Config.in
index a17b736dc..3bf445ef3 100644
--- a/toolchain/gdb/Config.in
+++ b/toolchain/gdb/Config.in
@@ -1,7 +1,3 @@
-# Choose gcc version.
-# WARNING -- 2.95 currently only builds for i386, arm, mips*, and powerpc.
-# WARNING -- 2.95 does not currently build natively for the target.
-
comment "Gdb Options"
config BR2_PACKAGE_GDB
@@ -9,14 +5,20 @@ config BR2_PACKAGE_GDB
default n
select BR2_PACKAGE_NCURSES
help
- Enable the gdb debugger.
+ Build the full gdb debugger to run on the target.
config BR2_PACKAGE_GDB_SERVER
bool "Build gdb server for the Target"
default n
- select BR2_PACKAGE_NCURSES
help
- Enable the gdb debugger.
+ Build the gdbserver stub to run on the target.
+ A full gdb is needed to debug the progam.
+
+config BR2_PACKAGE_GDB_CLIENT
+ bool "Build gdb client for the Host"
+ default n
+ help
+ Build gdb to run on the host to debug programs running on the target.
choice
prompt "GDB debuger Version"