diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2011-11-13 09:55:54 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-11-13 21:31:39 +0100 |
commit | 33b8c556afbe7bf544fee4e0e7263bb4b9284ac1 (patch) | |
tree | 2faf9b59365d1e512480a1935d0e24bb57323745 /toolchain/gdb/Config.in | |
parent | e17418480719803f4454c4393c5be5d2c0f8033a (diff) |
gdb: do not allow native gdb on SuperH architecture
The gdb debugger does not have support for running as the native
debugger on the SuperH architecture:
configure: error: "*** Gdb does not support native target sh4-unknown-linux-gnu"
See also http://lists.debian.org/debian-superh/2010/04/msg00000.html.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'toolchain/gdb/Config.in')
-rw-r--r-- | toolchain/gdb/Config.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/toolchain/gdb/Config.in b/toolchain/gdb/Config.in index e593698d2..af6e56aac 100644 --- a/toolchain/gdb/Config.in +++ b/toolchain/gdb/Config.in @@ -4,6 +4,7 @@ config BR2_PACKAGE_GDB bool "Build gdb debugger for the Target" select BR2_PACKAGE_NCURSES depends on BR2_USE_WCHAR + depends on !BR2_sh && !BR2_sh64 help Build the full gdb debugger to run on the target. |