linux+arc: update kernel
[openadk.git] / target / config / Config.in.gdb
blob00e12c62ad7b52e1fa341db089b3cd67b07be74b
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_RISCV_GIT if ADK_TARGET_ARCH_RISCV32
25 default ADK_TOOLCHAIN_GDB_RISCV_GIT if ADK_TARGET_ARCH_RISCV64
26 default ADK_TOOLCHAIN_GDB_8_1
28 config ADK_TOOLCHAIN_GDB_GIT
29         bool "git"
30         depends on !ADK_TARGET_ARCH_AVR32
31         depends on !ADK_TARGET_ARCH_H8300
32         depends on !ADK_TARGET_ARCH_NDS32
33         depends on !ADK_TARGET_ARCH_RISCV32
34         depends on !ADK_TARGET_ARCH_RISCV64
36 config ADK_TOOLCHAIN_GDB_H8300_GIT
37         bool "h8300-git"
38         depends on ADK_TARGET_ARCH_H8300
40 config ADK_TOOLCHAIN_GDB_RISCV_GIT
41         bool "riscv-git"
42         depends on ADK_TARGET_ARCH_RISCV32 || ADK_TARGET_ARCH_RISCV64
44 config ADK_TOOLCHAIN_GDB_8_1
45         bool "8.1"
46         depends on !ADK_TARGET_ARCH_AVR32
47         depends on !ADK_TARGET_ARCH_H8300
48         depends on !ADK_TARGET_ARCH_NDS32
49         depends on !ADK_TARGET_ARCH_RISCV32
50         depends on !ADK_TARGET_ARCH_RISCV64
52 config ADK_TOOLCHAIN_GDB_6_7_1
53         bool "6.7.1"
54         depends on ADK_TARGET_ARCH_AVR32
56 endchoice