2007-05-17 16:22:51 +00:00
|
|
|
# GDB menu
|
|
|
|
|
2011-05-08 19:02:44 +02:00
|
|
|
## help gdb is the GNU debugger
|
2007-05-17 16:22:51 +00:00
|
|
|
|
2010-03-15 21:42:55 +01: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
|
|
|
|
2011-05-31 21:03:03 +02:00
|
|
|
config GDB_HAS_PKGVERSION_BUGURL
|
|
|
|
bool
|
2017-05-19 21:58:46 -07:00
|
|
|
default y if GDB_7_0_or_later
|
2010-03-20 18:49:15 +01:00
|
|
|
|
2014-08-17 15:10:01 -07:00
|
|
|
config GDB_HAS_PYTHON
|
|
|
|
bool
|
2017-05-19 21:58:46 -07:00
|
|
|
default y if GDB_7_0_or_later
|
2014-08-17 15:10:01 -07:00
|
|
|
|
2011-07-30 00:05:53 +02:00
|
|
|
config GDB_INSTALL_GDBINIT
|
|
|
|
bool
|
2017-05-19 21:58:46 -07:00
|
|
|
default y if GDB_7_0_or_later
|
2018-05-06 15:20:50 -07:00
|
|
|
|
|
|
|
# GDB 8.0 now requires C++ for build. GDB 7.12 offered a configure
|
|
|
|
# switch to fall back to C. We want to use that option because
|
|
|
|
# the conversion in 7.12 was incomplete and had some breakages.
|
|
|
|
config GDB_HAS_DISABLE_CXX_BUILD
|
|
|
|
def_bool y
|
|
|
|
depends on GDB_7_12_or_later && !GDB_8_0_or_later
|