mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-21 05:43:09 +00:00
3ac6f1791a
Drop gdb 7.11.1, 7.12.1, 8.0.1, 8.1.1 and 8.2.1. Cleanup milestones related to these older versions. Signed-off-by: Chris Packham <judge.packham@gmail.com>
21 lines
541 B
Plaintext
21 lines
541 B
Plaintext
# GDB menu
|
|
|
|
## help gdb is the GNU debugger
|
|
|
|
source "config/debug/gdb.in.cross"
|
|
source "config/debug/gdb.in.native"
|
|
|
|
|
|
# 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
|
|
select GDB_REQUIRE_older_than_10
|
|
|
|
# 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
|
|
depends on GDB_10_or_later
|