Config.in 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. comment "Gdb Options"
  2. config BR2_PACKAGE_GDB
  3. bool "Build gdb debugger for the Target"
  4. select BR2_PACKAGE_NCURSES
  5. help
  6. Build the full gdb debugger to run on the target.
  7. config BR2_PACKAGE_GDB_SERVER
  8. bool "Build gdb server for the Target"
  9. help
  10. Build the gdbserver stub to run on the target.
  11. A full gdb is needed to debug the progam.
  12. config BR2_PACKAGE_GDB_HOST
  13. bool "Build gdb for the Host"
  14. help
  15. Build gdb to run on the host to debug programs run on the target.
  16. choice
  17. prompt "GDB debugger Version"
  18. default BR2_GDB_VERSION_6_8 if !BR2_avr32
  19. default BR2_GDB_VERSION_6_7_1_AVR32_2_1_5 if BR2_avr32
  20. depends on BR2_PACKAGE_GDB || BR2_PACKAGE_GDB_SERVER || BR2_PACKAGE_GDB_HOST
  21. help
  22. Select the version of gdb you wish to use.
  23. config BR2_GDB_VERSION_6_4
  24. bool "gdb 6.4"
  25. depends on !BR2_avr32
  26. depends on BR2_DEPRECATED
  27. config BR2_GDB_VERSION_6_5
  28. bool "gdb 6.5"
  29. depends on !BR2_avr32
  30. depends on BR2_DEPRECATED
  31. config BR2_GDB_VERSION_6_6
  32. bool "gdb 6.6"
  33. depends on !BR2_avr32
  34. depends on BR2_DEPRECATED
  35. config BR2_GDB_VERSION_6_7_1
  36. depends on !BR2_avr32
  37. bool "gdb 6.7.1"
  38. config BR2_GDB_VERSION_6_7_1_AVR32_2_1_5
  39. depends on BR2_avr32
  40. bool "gdb 6.7.1-avr32-2.1.5"
  41. config BR2_GDB_VERSION_6_8
  42. bool "gdb 6.8"
  43. depends on !BR2_avr32
  44. endchoice
  45. config BR2_GDB_VERSION
  46. string
  47. default "6.4" if BR2_GDB_VERSION_6_4
  48. default "6.5" if BR2_GDB_VERSION_6_5
  49. default "6.6" if BR2_GDB_VERSION_6_6
  50. default "6.7.1" if BR2_GDB_VERSION_6_7_1
  51. default "6.7.1-avr32-2.1.5" if BR2_GDB_VERSION_6_7_1_AVR32_2_1_5
  52. default "6.8" if BR2_GDB_VERSION_6_8