Mail Archives: djgpp/1996/05/09/19:21:38
Eli Zaretskii (eliz AT is DOT elta DOT co DOT il) wrote:
: On 8 May 1996, Jeffrey Taylor wrote:
: > and wade thru all the members. Printing class static variables requires
: > figuring out the mangled name. Not graceful or seamless, but useable. I
: > have debugged 10s of thousands of lines this way.
: Don't the various demangling options (like `set print demangle', `set
: demangle-style' etc.) work with DJGPP executables? The docs don't say
: which formats support them.
It is a little tricky, but info gdb sheds some light. For example:
b CMPForward::go<CR>
reports that CMPForward has no method go. It does.
b CMPForward::go<TAB><TAB>
lists all the go functions with mangled names.
b 'CMPForward::go<TAB><TAB>
and
b 'CMPForward::go()'
behave as expected. Note the single quote!
Jeff T
-
============================================
Without my guitar, I am a poet without arms.
- Michael Bloomfield
============================================
- Raw text -