mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 12:57:53 +00:00
6c368af5b4
- remove legions of those, - remove associated patches no longer needed, - mark then as (OBSOLETE) in the prompt;
73 lines
1.3 KiB
Plaintext
73 lines
1.3 KiB
Plaintext
# GDB menu
|
|
|
|
menuconfig GDB
|
|
bool
|
|
prompt "gdb"
|
|
default n
|
|
help
|
|
Enable gdb for the target
|
|
|
|
if GDB
|
|
|
|
config GDB_CROSS
|
|
bool
|
|
prompt "Cross-gdb"
|
|
default y
|
|
help
|
|
Build and install a cross-gdb for the target, and to run on host.
|
|
|
|
config GDB_CROSS_STATIC_GDBSERVER
|
|
bool
|
|
prompt "Build a static gdbserver"
|
|
default n
|
|
depends on GDB_CROSS
|
|
help
|
|
In case you have trouble with dynamic loading of shared libraries,
|
|
you will find that a static gdbserver comes in handy.
|
|
|
|
config GDB_NATIVE
|
|
bool
|
|
prompt "Native gdb (EXPERIMENTAL)"
|
|
default n
|
|
depends on EXPERIMENTAL
|
|
help
|
|
Build and install a native gdb for the target, to run on the target.
|
|
|
|
choice
|
|
bool
|
|
prompt "gdb version"
|
|
|
|
config GDB_V_snapshot
|
|
bool
|
|
prompt "snapshot (EXPERIMENTAL)"
|
|
depends on EXPERIMENTAL
|
|
|
|
config GDB_V_6_4
|
|
bool
|
|
prompt "6.4 (OBSOLETE)"
|
|
depends on OBSOLETE
|
|
|
|
config GDB_V_6_5
|
|
bool
|
|
prompt "6.5"
|
|
|
|
config GDB_V_6_6
|
|
bool
|
|
prompt "6.6"
|
|
|
|
# CT_INSERT_VERSION_ABOVE
|
|
# Don't remove above line!
|
|
endchoice
|
|
|
|
config GDB_VERSION
|
|
string
|
|
default "snapshot" if GDB_V_snapshot
|
|
default "6.4" if GDB_V_6_4
|
|
default "6.5" if GDB_V_6_5
|
|
default "6.6" if GDB_V_6_6
|
|
# CT_INSERT_VERSION_STRING_ABOVE
|
|
# Don't remove above line!
|
|
|
|
endif
|
|
|