diff options
author | Alexey Neyman <stilor@att.net> | 2017-02-02 18:06:28 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-02-02 18:06:28 -0800 |
commit | 26ce9942a3bbb68268ba8929aab6f9fee2eb1f97 (patch) | |
tree | 40e2acba19abb3907c3ca20b342e77adf1f3833b /config/debug | |
parent | 1baddb19ee04bc5e7603cc147f5800f2ecfa944f (diff) | |
download | crosstool-ng-26ce9942a3bbb68268ba8929aab6f9fee2eb1f97.tar.gz crosstool-ng-26ce9942a3bbb68268ba8929aab6f9fee2eb1f97.tar.bz2 crosstool-ng-26ce9942a3bbb68268ba8929aab6f9fee2eb1f97.zip |
Require C++ support for gdbserver 7.12 or newer.
Also, do not select gdbserver for cross-gdb automatically, or it may
be selected even without meeting the dependencies (if C++ is not enabled)
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'config/debug')
-rw-r--r-- | config/debug/gdb.in.cross | 1 | ||||
-rw-r--r-- | config/debug/gdb.in.gdbserver | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/config/debug/gdb.in.cross b/config/debug/gdb.in.cross index fb993c91..945f8eb7 100644 --- a/config/debug/gdb.in.cross +++ b/config/debug/gdb.in.cross @@ -7,7 +7,6 @@ config GDB_CROSS bool prompt "Cross-gdb" default y - select GDB_GDBSERVER if ! BARE_METAL select EXPAT_NEEDED select NCURSES_NEEDED help diff --git a/config/debug/gdb.in.gdbserver b/config/debug/gdb.in.gdbserver index 8d8fce5b..feb3a0d6 100644 --- a/config/debug/gdb.in.gdbserver +++ b/config/debug/gdb.in.gdbserver @@ -4,6 +4,7 @@ config GDB_GDBSERVER bool prompt "gdbserver" depends on ! BARE_METAL + depends on CC_LANG_CXX || !GDB_7_12_or_later help Build and install a gdbserver for the target, to run on the target. |