Config.in.2 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # Keep this in sync with Config.in
  2. # Why don't you use Config.in in the first place?
  3. comment "Gdb Options"
  4. config BR2_PACKAGE_GDB
  5. bool "Build gdb debugger for the Target"
  6. default n
  7. select BR2_PACKAGE_NCURSES
  8. help
  9. Build the full gdb debugger to run on the target.
  10. config BR2_PACKAGE_GDB_SERVER
  11. bool "Build gdb server for the Target"
  12. default n
  13. help
  14. Build the gdbserver stub to run on the target.
  15. A full gdb is needed to debug the progam.
  16. config BR2_PACKAGE_GDB_HOST
  17. bool "Build gdb for the Host"
  18. default n
  19. help
  20. Build gdb to run on the host to debug programs run on the target.
  21. choice
  22. prompt "GDB debugger Version"
  23. default BR2_GDB_VERSION_6_3
  24. depends on BR2_PACKAGE_GDB || BR2_PACKAGE_GDB_SERVER || BR2_PACKAGE_GDB_HOST
  25. help
  26. Select the version of gdb you wish to use.
  27. config BR2_EXT_GDB_VERSION_6_2_1
  28. bool "gdb 6.2.1"
  29. config BR2_EXT_GDB_VERSION_6_3
  30. bool "gdb 6.3"
  31. config BR2_EXT_GDB_VERSION_6_4
  32. bool "gdb 6.4"
  33. config BR2_EXT_GDB_VERSION_6_5
  34. bool "gdb 6.5"
  35. config BR2_EXT_GDB_VERSION_SNAPSHOT
  36. bool "gdb snapshot"
  37. endchoice
  38. config BR2_EXT_GDB_VERSION
  39. string
  40. default "6.2.1" if BR2_EXT_GDB_VERSION_6_2_1
  41. default "6.3" if BR2_EXT_GDB_VERSION_6_3
  42. default "6.4" if BR2_EXT_GDB_VERSION_6_4
  43. default "6.5" if BR2_EXT_GDB_VERSION_6_5
  44. default "6.6" if BR2_EXT_GDB_VERSION_6_6
  45. default "snapshot" if BR2_EXT_GDB_VERSION_SNAPSHOT