2007-05-17 16:22:51 +00:00
|
|
|
# GDB menu
|
|
|
|
|
2011-05-08 17:02:44 +00:00
|
|
|
## help gdb is the GNU debugger
|
2007-05-17 16:22:51 +00:00
|
|
|
|
2010-03-15 20:42:55 +00:00
|
|
|
source "config/debug/gdb.in.cross"
|
|
|
|
source "config/debug/gdb.in.native"
|
2009-03-26 18:58:13 +00:00
|
|
|
|
2018-05-06 22:20:50 +00:00
|
|
|
|
2022-02-04 18:31:25 +00:00
|
|
|
# GDB10 and newer require std::future<> which was not implemented on some
|
|
|
|
# architectures until GCC9; see GCC PR 64735.
|
|
|
|
config GDB_DEP_NO_STD_FUTURE
|
|
|
|
def_bool y
|
|
|
|
depends on !GCC_9_or_later
|
2022-02-04 19:35:52 +00:00
|
|
|
select GDB_REQUIRE_older_than_10
|
2022-02-04 18:31:25 +00:00
|
|
|
|
2020-05-27 10:10:31 +00:00
|
|
|
# As of GDB 10.x gdbserver is now at the toplevel of the distributed
|
|
|
|
# tarball (instead of a subdirectory of gdb)
|
|
|
|
config GDB_GDBSERVER_TOPLEVEL
|
|
|
|
def_bool y
|
2022-02-04 19:35:52 +00:00
|
|
|
depends on GDB_10_or_later
|