Config.in.gdb 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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_10_1
  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_10_1
  29. bool "10.1"
  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_6_7_1
  34. bool "6.7.1"
  35. depends on ADK_TARGET_ARCH_AVR32
  36. endchoice