2
1

Config.in 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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 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_2_1
  24. bool "gdb 6.2.1"
  25. depends on !BR2_avr32 && !BR2_nios2
  26. depends on BR2_DEPRECATED
  27. config BR2_GDB_VERSION_6_3
  28. bool "gdb 6.3"
  29. depends on !BR2_avr32 && !BR2_nios2
  30. depends on BR2_DEPRECATED
  31. config BR2_GDB_VERSION_6_4
  32. bool "gdb 6.4"
  33. depends on !BR2_avr32 && !BR2_nios2
  34. depends on BR2_DEPRECATED
  35. config BR2_GDB_VERSION_6_5
  36. bool "gdb 6.5"
  37. depends on !BR2_avr32 && !BR2_nios2
  38. depends on BR2_DEPRECATED
  39. config BR2_GDB_VERSION_6_6
  40. bool "gdb 6.6"
  41. depends on !BR2_avr32
  42. depends on BR2_DEPRECATED
  43. config BR2_GDB_VERSION_6_7_1
  44. bool "gdb 6.7.1"
  45. config BR2_GDB_VERSION_6_8
  46. bool "gdb 6.8"
  47. depends on !BR2_avr32
  48. config BR2_GDB_VERSION_SNAPSHOT
  49. bool "gdb snapshot"
  50. depends on !BR2_avr32 && !BR2_nios2
  51. endchoice
  52. config BR2_GDB_VERSION
  53. string
  54. default "6.2.1" if BR2_GDB_VERSION_6_2_1
  55. default "6.3" if BR2_GDB_VERSION_6_3
  56. default "6.4" if BR2_GDB_VERSION_6_4
  57. default "6.5" if BR2_GDB_VERSION_6_5
  58. default "6.6" if BR2_GDB_VERSION_6_6
  59. default "6.7.1" if BR2_GDB_VERSION_6_7_1
  60. default "6.8" if BR2_GDB_VERSION_6_8
  61. default "snapshot" if BR2_GDB_VERSION_SNAPSHOT