mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-23 06:32:23 +00:00
3f16a8e269
(whether GDB has --disable-build-with-cxx) and use it. Signed-off-by: Alexey Neyman <stilor@att.net>
27 lines
666 B
Plaintext
27 lines
666 B
Plaintext
# GDB menu
|
|
|
|
## help gdb is the GNU debugger
|
|
|
|
source "config/debug/gdb.in.cross"
|
|
source "config/debug/gdb.in.native"
|
|
source "config/debug/gdb.in.gdbserver"
|
|
|
|
config GDB_HAS_PKGVERSION_BUGURL
|
|
bool
|
|
default y if GDB_7_0_or_later
|
|
|
|
config GDB_HAS_PYTHON
|
|
bool
|
|
default y if GDB_7_0_or_later
|
|
|
|
config GDB_INSTALL_GDBINIT
|
|
bool
|
|
default y if GDB_7_0_or_later
|
|
|
|
# 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
|