Config.in.gdb 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. choice
  4. prompt "GNU debugger"
  5. config ADK_TOOLCHAIN_WITHOUT_GDB
  6. bool "disabled"
  7. help
  8. Disable GDB for the host.
  9. config ADK_TOOLCHAIN_WITH_GDB
  10. bool "enabled"
  11. help
  12. Enable GDB for the host. Version selection will be used
  13. for gdb/gdbserver for the target.
  14. endchoice
  15. choice
  16. prompt "GNU debugger version"
  17. depends on ADK_TOOLCHAIN_WITH_GDB
  18. default ADK_TOOLCHAIN_GDB_H8300_GIT if ADK_TARGET_ARCH_H8300
  19. default ADK_TOOLCHAIN_GDB_14_2
  20. config ADK_TOOLCHAIN_GDB_GIT
  21. bool "git"
  22. depends on !ADK_TARGET_ARCH_AVR32
  23. depends on !ADK_TARGET_ARCH_H8300
  24. depends on !ADK_TARGET_ARCH_NDS32
  25. config ADK_TOOLCHAIN_GDB_H8300_GIT
  26. bool "h8300-git"
  27. depends on ADK_TARGET_ARCH_H8300
  28. config ADK_TOOLCHAIN_GDB_14_2
  29. bool "14.2"
  30. depends on !ADK_TARGET_ARCH_AVR32
  31. depends on !ADK_TARGET_ARCH_H8300
  32. depends on !ADK_TARGET_ARCH_NDS32
  33. config ADK_TOOLCHAIN_GDB_13_2
  34. bool "13.2"
  35. depends on !ADK_TARGET_ARCH_AVR32
  36. depends on !ADK_TARGET_ARCH_H8300
  37. depends on !ADK_TARGET_ARCH_NDS32
  38. config ADK_TOOLCHAIN_GDB_12_1
  39. bool "12.1"
  40. depends on !ADK_TARGET_ARCH_AVR32
  41. depends on !ADK_TARGET_ARCH_H8300
  42. depends on !ADK_TARGET_ARCH_NDS32
  43. config ADK_TOOLCHAIN_GDB_6_7_1
  44. bool "6.7.1"
  45. depends on ADK_TARGET_ARCH_AVR32
  46. endchoice