linux: update to 6.10.x, 6.9.x is EOL
[openadk.git] / target / config / Config.in.gdb
blobd8daac66e908dc5f1d3ff68e28ceffcd5b79bd28
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_15_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_15_1
37         bool "15.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_14_2
43         bool "14.2"
44         depends on !ADK_TARGET_ARCH_AVR32
45         depends on !ADK_TARGET_ARCH_H8300
46         depends on !ADK_TARGET_ARCH_NDS32
48 config ADK_TOOLCHAIN_GDB_13_2
49         bool "13.2"
50         depends on !ADK_TARGET_ARCH_AVR32
51         depends on !ADK_TARGET_ARCH_H8300
52         depends on !ADK_TARGET_ARCH_NDS32
54 config ADK_TOOLCHAIN_GDB_6_7_1
55         bool "6.7.1"
56         depends on ADK_TARGET_ARCH_AVR32
58 endchoice