Config.in 1.5 KB

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