You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

47 lines
1.5 KiB

  1. /** @page bugs Bug Reporting
  2. Please report bugs by subscribing to the OpenOCD mailing list and
  3. posting a message with your report:
  4. openocd-development@lists.berlios.de
  5. To minimize work for OpenOCD developers, you can include
  6. all the information below. If you feel that some of the
  7. items below are unnecessary for a clear bug report, you
  8. leave them out.
  9. - Target PCB/board description
  10. - Config scripts
  11. - OpenOCD command line
  12. - List of commands issued or GDB operations performed
  13. - Expected result
  14. - Actual result
  15. - Logs using @c debug_level 3 (e.g. add '-d 3' to the command line)
  16. - If this is a regression, include logs for working and broken version
  17. - If this is a regression, please find out the precise version that
  18. caused the regression. This can be done via a binary search; For
  19. example: if testing version 550 works but 600 fail, then try 575, etc.
  20. - If OpenOCD is crashing, you can use GDB to get a trace:@par
  21. @code
  22. % gdb --args openocd ....
  23. (gdb) run
  24. (gdb) bt
  25. => here a stack trace is dumped.
  26. @endcode
  27. - To run or debug the in-tree executable (not recommended), you must
  28. use libtool to set up the correct shared library paths:
  29. @code
  30. libtool gdb --args openocd ....
  31. @endcode
  32. or the more pedantic (and forward-compatible):
  33. @code
  34. libtool --mode=execute gdb --args openocd ....
  35. @endcode
  36. - Attach files directly to the posting. The mailing list knows to
  37. transform attachments to links so you will not be bloating anyones mail
  38. box. Please keep attachments to less than 100KB.
  39. */