Difference between revisions of "Debugging"

From MythTV Official Wiki
Jump to: navigation, search
(Added RPM Fusion stuff)
(Debugging with ATrpms packages: it's a start (even if it doesn't work))
Line 15: Line 15:
 
=== Debugging with ATrpms packages ===
 
=== Debugging with ATrpms packages ===
  
 +
yum --enablerepo=\*-debuginfo install mythtv-debuginfo
  
 
=== Debugging with RPM Fusion packages ===
 
=== Debugging with RPM Fusion packages ===

Revision as of 20:58, 30 July 2009

Debugging MythTV

If any of your MythTV programs crash (segfault), you must generate a proper backtrace before submitting a new bug report. Please also see the Ticket HOWTO for more information before submitting a bug report.

Debugging source-based installs

Section 22.2 of the MythTV Documentation, linked from the MythTV website provides details of debugging source-based installs.

Note, also, that in addition to --compile-type=debug, the MythTV configure script now supports an option, --compile-type=profile. In many cases, a profile build will be acceptable for creating backtraces. The main difference between the debug and profile builds is that the debug build disables optimizations. Therefore, a debug build may perform significantly worse than a profile build. If you need to run MythTV under gdb for a long time, it may be worthwhile to run a profile build. If, however, a developer asks you to re-create the backtrace using a debug build, please do so without argument as some portions of the code can only be reliably debugged with a debug build. However, if your system is sufficiently powerful to run a debug build, you may want to start with that so you can be certain the backtrace will be useful.

Debugging package-based installs

Note that rather than recompiling to perform the debugging, you may be able to use "debug" packages provided by your packagers. Debug packages simply install the debugging symbols for the already-installed packages you're using, meaning you do not have to uninstall or reinstall MythTV. Often using the debug packages requires enabling a special repo that contains the debug packages.

Debugging with ATrpms packages

yum --enablerepo=\*-debuginfo install mythtv-debuginfo

Debugging with RPM Fusion packages

yum --enablerepo=\*-debuginfo install mythtv-debuginfo

Debugging with Ubuntu packages

Some Ubuntu user, please take https://wiki.ubuntu.com/DebuggingProgramCrash and turn it into MythTV-specific documentation, here. Thanks.

Debugging with Gentoo ebuilds

Rebuild with debugging symbols intact

for package in `equery l -i myth | awk "{print $3}" | tail -n+2`
do
 USE="debug" && FEATURES="nostrip" && emerge --oneshot =$package
done

Keywords:

* backtrace
* segfault
* tracepoint