Config.in.host 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. config BR2_PACKAGE_HOST_GDB
  2. bool "Build cross gdb for the host"
  3. # When the external toolchain gdbserver is used, we shouldn't
  4. # allow to build a cross-gdb, as the one of the external
  5. # toolchain should be used.
  6. depends on !BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY
  7. depends on !BR2_nios2
  8. help
  9. Build a cross gdb that runs on the host machine and debugs
  10. programs running on the target. It requires 'gdbserver'
  11. installed on the target, see BR2_PACKAGE_GDB_SERVER to
  12. enable it.
  13. if BR2_PACKAGE_HOST_GDB
  14. config BR2_PACKAGE_HOST_GDB_TUI
  15. bool "TUI support"
  16. help
  17. This option enables terminal user interface (TUI) for gdb
  18. config BR2_PACKAGE_HOST_GDB_PYTHON
  19. bool "Python support"
  20. help
  21. This option enables the Python support in the cross gdb.
  22. config BR2_PACKAGE_HOST_GDB_SIM
  23. bool "Simulator support"
  24. depends on !BR2_arc
  25. help
  26. This option enables the simulator support in the cross gdb.
  27. choice
  28. prompt "GDB debugger Version"
  29. depends on !BR2_arc
  30. depends on !BR2_microblaze
  31. default BR2_GDB_VERSION_7_10
  32. help
  33. Select the version of gdb you wish to use.
  34. config BR2_GDB_VERSION_7_9
  35. bool "gdb 7.9.x"
  36. config BR2_GDB_VERSION_7_10
  37. bool "gdb 7.10.x"
  38. config BR2_GDB_VERSION_7_11
  39. bool "gdb 7.11.x"
  40. endchoice
  41. endif
  42. # If cross-gdb is not enabled, the latest working version is chosen.
  43. config BR2_GDB_VERSION
  44. string
  45. depends on BR2_PACKAGE_GDB || BR2_PACKAGE_HOST_GDB
  46. default "arc-2016.03-gdb" if BR2_arc
  47. default "6be65fb56ea6694a9260733a536a023a1e2d4d57" if BR2_microblaze
  48. default "7.9.1" if BR2_GDB_VERSION_7_9
  49. default "7.10.1" if BR2_GDB_VERSION_7_10 || !BR2_PACKAGE_HOST_GDB
  50. default "7.11.1" if BR2_GDB_VERSION_7_11