how to get as much as possible from dbx - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T12:46:38Z http://stackoverflow.com/feeds/question/220040 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/220040/how-to-get-as-much-as-possible-from-dbx 1 how to get as much as possible from dbx Nazgob 2008-10-20T21:37:16Z 2008-12-10T01:14:24Z <p>I do TDD on a daily basis for my C++ development on Solaris10. It has greatly reduced the time I have to spend using my debugger but sometime this is the only option.</p> <p>DBX is pretty powerful but not that user friendly. Note that I'm talking about console DBX not the SunStudio GUI for DBX).</p> <p>What are the best productivity tips you can give for dbx C++ debugging?</p> <p>PS. Changing debugger is not an option.</p> http://stackoverflow.com/questions/220040/how-to-get-as-much-as-possible-from-dbx/220292#220292 0 Answer by R Samuel Klatchko for how to get as much as possible from dbx R Samuel Klatchko 2008-10-20T23:27:45Z 2008-10-20T23:27:45Z <p>This may be too much of a change debugger reply, but have you thought about trying ddd? ddd is a graphical front end <strong>on top of</strong> dbx. So dbx is still the actual debugger but you have a much nicer GUI.</p> <p>The true power of ddd comes from its data-display. It can draw your full data structure including all the various pointers so you can easily 'see' your structures.</p> <p>Another nice feature is that when you use the GUI you can see the underlying debugger commands so that in the future, you can type them directly rather then using the GUI.</p> http://stackoverflow.com/questions/220040/how-to-get-as-much-as-possible-from-dbx/221061#221061 1 Answer by Luc Hermitte for how to get as much as possible from dbx Luc Hermitte 2008-10-21T07:35:12Z 2008-10-21T07:35:12Z <p>I have bookmarked a few sites related to dbx. Here they are, in no particular order in case they might be useful to you:</p> <ul> <li><a href="http://developers.sun.com/solaris/articles/dbxerr.html" rel="nofollow">Why Can't dbx Find My Function?</a></li> <li><a href="http://blogs.sun.com/quenelle/resource/dbxhelp.html" rel="nofollow">Online Help for the Dbx Debugger</a></li> <li><a href="http://technopark02.blogspot.com/2005/12/sun-studio-debugging-multi-threaded.html" rel="nofollow">Sun Studio: debugging a multi-threaded application w/ dbx</a></li> <li><a href="http://blogs.sun.com/dbx/entry/gdb_vs_dbx_commands_mapping" rel="nofollow">gdb vs. dbx: commands mapping and feature comparison</a></li> <li><a href="http://blogs.sun.com/quenelle/entry/importing_debug_information_into_dbx" rel="nofollow">Importing debug information into dbx</a></li> <li><a href="http://blogs.sun.com/quenelle/entry/command_line_dbx_see_more" rel="nofollow">command line dbx : See more source</a></li> <li><a href="http://forums.sun.com/thread.jspa?threadID=5070229&amp;messageID=9258271" rel="nofollow">Sun Studio C++ - Your .dbxrc</a> (NB: adapt the integer type used to cast pointers according to your pointer size)</li> <li><a href="http://technopark02.blogspot.com/2005/10/sun-studio-investigating-memory-leaks.html" rel="nofollow">Sun Studio: Investigating memory leaks with dbx</a></li> <li><a href="http://technopark02.blogspot.com/2005/11/sun-studio-gathering-memory.html" rel="nofollow">Sun Studio: Gathering memory allocations/leaks data, from a running process</a></li> </ul> <p>HTH.</p> http://stackoverflow.com/questions/220040/how-to-get-as-much-as-possible-from-dbx/221217#221217 1 Answer by Chris Huang-Leaver for how to get as much as possible from dbx Chris Huang-Leaver 2008-10-21T08:58:05Z 2008-10-23T16:17:52Z <p>I too <em>have</em> to use dbx at work and understand your frustrations! </p> <p>A few tips I have discovered which make my life a little easier:</p> <p>Using the built commands system like this: when stop { print <em>whatever</em> ; }<br /> Obviously doesn't work when <em>whatever</em> is out of scope, but I find it useful enough. I have yet to have much joy with the 'trace' facility, YMMV.</p> <p>Making your own .dbxrc file makes life much easier, as does the "pathmap" feature.</p> <p>Finally, this is only obvious if you know it already, but try Sun's manual ; <a href="http://docs.sun.com/source/819-3683/" rel="nofollow">http://docs.sun.com/source/819-3683/</a></p> <p>It isn't particularly well written, but still an essential read.</p> http://stackoverflow.com/questions/220040/how-to-get-as-much-as-possible-from-dbx/252701#252701 1 Answer by Chris Quenelle for how to get as much as possible from dbx Chris Quenelle 2008-10-31T05:54:47Z 2008-10-31T05:54:47Z <p>One of the powerful features of dbx is the built in ksh. You can write shell functions that are as complex as you might want to print customized views of data structures, or follow pointers in a specific route. The shell is an old variation of pdksh, so it's not the nicest for programming, but it's much better than not having any built-in language to use. There is also extensive help available from the command line. One trick for searching the help is to use "vi $helpfile" from within the dbx command shell. Tha tedits the raw helpfile data in one large file. You can see some examples of shell functions in the dbxrc file that ships with dbx and is loaded by default. You can see a more sophisticated example by looking at the libumem integration module. You can find it here:</p> <p><a href="http://blogs.sun.com/quenelle/entry/using_dbx_and_libumem_to" rel="nofollow">http://blogs.sun.com/quenelle/entry/using_dbx_and_libumem_to</a></p>