Config.in.gdb 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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_NDS32 if ADK_TARGET_ARCH_NDS32
  20. default ADK_TOOLCHAIN_GDB_7_12
  21. config ADK_TOOLCHAIN_GDB_GIT
  22. bool "git"
  23. depends on !ADK_TARGET_ARCH_AVR32
  24. depends on !ADK_TARGET_ARCH_H8300
  25. depends on !ADK_TARGET_ARCH_NDS32
  26. config ADK_TOOLCHAIN_GDB_H8300_GIT
  27. bool "h8300-git"
  28. depends on ADK_TARGET_ARCH_H8300
  29. config ADK_TOOLCHAIN_GDB_7_12
  30. bool "7.12"
  31. depends on !ADK_TARGET_ARCH_AVR32
  32. depends on !ADK_TARGET_ARCH_H8300
  33. depends on !ADK_TARGET_ARCH_NDS32
  34. config ADK_TOOLCHAIN_GDB_7_11_1
  35. bool "7.11.1"
  36. depends on !ADK_TARGET_ARCH_AVR32
  37. depends on !ADK_TARGET_ARCH_H8300
  38. depends on !ADK_TARGET_ARCH_NDS32
  39. config ADK_TOOLCHAIN_GDB_7_10_1
  40. bool "7.10.1"
  41. depends on !ADK_TARGET_ARCH_AVR32
  42. depends on !ADK_TARGET_ARCH_H8300
  43. depends on !ADK_TARGET_ARCH_NDS32
  44. config ADK_TOOLCHAIN_GDB_6_7_1
  45. bool "6.7.1"
  46. depends on ADK_TARGET_ARCH_AVR32
  47. endchoice