Config.in 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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_3
  22. depends on BR2_PACKAGE_GDB || BR2_PACKAGE_GDB_SERVER || BR2_PACKAGE_GDB_HOST
  23. help
  24. Select the version of gdb you wish to use.
  25. config BR2_GDB_VERSION_6_2_1
  26. bool "gdb 6.2.1"
  27. config BR2_GDB_VERSION_6_3
  28. bool "gdb 6.3"
  29. config BR2_GDB_VERSION_6_4
  30. bool "gdb 6.4"
  31. config BR2_GDB_VERSION_SNAPSHOT
  32. bool "gdb snapshot"
  33. endchoice
  34. config BR2_GDB_VERSION
  35. string
  36. default "6.2.1" if BR2_GDB_VERSION_6_2_1
  37. default "6.3" if BR2_GDB_VERSION_6_3
  38. default "6.4" if BR2_GDB_VERSION_6_4
  39. default "snapshot" if BR2_GDB_VERSION_SNAPSHOT