Config.in 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. comment "Gdb Options"
  2. config BR2_PACKAGE_GDB
  3. bool "Build gdb debugger for the Target"
  4. select BR2_PACKAGE_NCURSES
  5. depends on BR2_USE_WCHAR
  6. help
  7. Build the full gdb debugger to run on the target.
  8. comment "Gdb debugger for the target needs WCHAR support in toolchain"
  9. depends on !BR2_USE_WHCAR
  10. config BR2_PACKAGE_GDB_SERVER
  11. bool "Build gdb server for the Target"
  12. help
  13. Build the gdbserver stub to run on the target.
  14. A full gdb is needed to debug the progam.
  15. config BR2_PACKAGE_GDB_HOST
  16. bool "Build gdb for the Host"
  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_8 if !BR2_avr32
  22. default BR2_GDB_VERSION_6_7_1_AVR32_2_1_5 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_4
  27. bool "gdb 6.4"
  28. depends on !BR2_avr32
  29. depends on BR2_DEPRECATED
  30. config BR2_GDB_VERSION_6_5
  31. bool "gdb 6.5"
  32. depends on !BR2_avr32
  33. depends on BR2_DEPRECATED
  34. config BR2_GDB_VERSION_6_6
  35. bool "gdb 6.6"
  36. depends on !BR2_avr32
  37. depends on BR2_DEPRECATED
  38. config BR2_GDB_VERSION_6_7_1
  39. depends on !BR2_avr32
  40. bool "gdb 6.7.1"
  41. config BR2_GDB_VERSION_6_7_1_AVR32_2_1_5
  42. depends on BR2_avr32
  43. bool "gdb 6.7.1-avr32-2.1.5"
  44. config BR2_GDB_VERSION_6_8
  45. bool "gdb 6.8"
  46. depends on !BR2_avr32
  47. endchoice
  48. config BR2_GDB_VERSION
  49. string
  50. default "6.4" if BR2_GDB_VERSION_6_4
  51. default "6.5" if BR2_GDB_VERSION_6_5
  52. default "6.6" if BR2_GDB_VERSION_6_6
  53. default "6.7.1" if BR2_GDB_VERSION_6_7_1
  54. default "6.7.1-avr32-2.1.5" if BR2_GDB_VERSION_6_7_1_AVR32_2_1_5
  55. default "6.8" if BR2_GDB_VERSION_6_8