summaryrefslogtreecommitdiff
path: root/config/debug/gdb.in.cross
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-03-30 06:13:08 (GMT)
committerGitHub <noreply@github.com>2017-03-30 06:13:08 (GMT)
commita7edff1820d89b45449c7764644fbfa3562e3297 (patch)
treeeee13dd4cd1ce0ba5215d1d6cfa6967e9fc3b22b /config/debug/gdb.in.cross
parent54a4975220e6a277e93f7844bb79c2dbf5554d16 (diff)
parent6af04d822bdcd533ce731ba245f50bfbc22ed4a4 (diff)
Merge pull request #667 from stilor/cross-gdb-deps
cross-gdb: account for canadian/crossnative toolchains
Diffstat (limited to 'config/debug/gdb.in.cross')
-rw-r--r--config/debug/gdb.in.cross8
1 files changed, 4 insertions, 4 deletions
diff --git a/config/debug/gdb.in.cross b/config/debug/gdb.in.cross
index 945f8eb..3053f71 100644
--- a/config/debug/gdb.in.cross
+++ b/config/debug/gdb.in.cross
@@ -17,8 +17,8 @@ if GDB_CROSS
config GDB_CROSS_STATIC
bool
prompt "Build a static cross gdb"
- depends on CONFIGURE_has_static_link
- select WANTS_STATIC_LINK
+ depends on CONFIGURE_has_static_link || CROSS_NATIVE || CANADIAN
+ select WANTS_STATIC_LINK if NATIVE || CROSS
help
A static cross gdb can be useful if you debug on a machine that is
not the one that is used to compile the toolchain.
@@ -38,8 +38,8 @@ config GDB_CROSS_PYTHON
bool
prompt "Enable python scripting"
depends on GDB_HAS_PYTHON
- depends on ! GDB_CROSS_STATIC
- default y
+ depends on !GDB_CROSS_STATIC
+ default y if !CROSS_NATIVE && !CANADIAN
help
Say 'y' if you want to use Python scripting inside gdb.
Say 'n' if you do not want to.