gdb: update to 8.1
[openadk.git] / target / config / Config.in.gdb
blobbdc7c462e41867cc6d8bb44badbe1ab65a66f07a
1 # This file is part of the OpenADK project. OpenADK is copyrighted
2 # material, please see the LICENCE file in the top-level directory.
4 choice
5 prompt "GNU debugger"
7 config ADK_TOOLCHAIN_WITHOUT_GDB
8         bool "disabled"
9         help
10           Disable GDB for the host.
12 config ADK_TOOLCHAIN_WITH_GDB
13         bool "enabled"
14         help
15           Enable GDB for the host. Version selection will be used
16           for gdb/gdbserver for the target.
18 endchoice
20 choice
21 prompt "GNU debugger version"
22 depends on ADK_TOOLCHAIN_WITH_GDB
23 default ADK_TOOLCHAIN_GDB_H8300_GIT if ADK_TARGET_ARCH_H8300
24 default ADK_TOOLCHAIN_GDB_8_1
26 config ADK_TOOLCHAIN_GDB_GIT
27         bool "git"
28         depends on !ADK_TARGET_ARCH_AVR32
29         depends on !ADK_TARGET_ARCH_H8300
30         depends on !ADK_TARGET_ARCH_NDS32
32 config ADK_TOOLCHAIN_GDB_H8300_GIT
33         bool "h8300-git"
34         depends on ADK_TARGET_ARCH_H8300
36 config ADK_TOOLCHAIN_GDB_8_1
37         bool "8.1"
38         depends on !ADK_TARGET_ARCH_AVR32
39         depends on !ADK_TARGET_ARCH_H8300
40         depends on !ADK_TARGET_ARCH_NDS32
42 config ADK_TOOLCHAIN_GDB_6_7_1
43         bool "6.7.1"
44         depends on ADK_TARGET_ARCH_AVR32
46 endchoice