2
1

Config.in 964 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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_CLIENT
  15. bool "Build gdb client for the Host"
  16. default n
  17. help
  18. Build gdb to run on the host to debug programs running on the target.
  19. choice
  20. prompt "GDB debuger Version"
  21. default BR2_GDB_VERSION_6_3
  22. depends on BR2_PACKAGE_GDB || BR2_PACKAGE_GDB_SERVER || BR2_PACKAGE_GDB_CLIENT
  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. endchoice
  30. config BR2_GDB_VERSION
  31. string
  32. default "6.2.1" if BR2_GDB_VERSION_6_2_1
  33. default "6.3" if BR2_GDB_VERSION_6_3