Config.in.gdb 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. default ADK_TOOLCHAIN_GDB_H8300_GIT if ADK_TARGET_ARCH_H8300
  18. default ADK_TOOLCHAIN_GDB_NDS32 if ADK_TARGET_ARCH_NDS32
  19. default ADK_TOOLCHAIN_GDB_7_11_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_7_11_1
  29. bool "7.11.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_7_10_1
  34. bool "7.10.1"
  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_7_9_1
  39. bool "7.9.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_7_8_2
  44. bool "7.8.2"
  45. depends on ADK_TARGET_ARCH_MICROBLAZE
  46. config ADK_TOOLCHAIN_GDB_6_7_1
  47. bool "6.7.1"
  48. depends on ADK_TARGET_ARCH_AVR32
  49. endchoice