Print static members when showing a C++ object.
set print static-members [on | off]
on |
The debugger prints static members. This is the default. |
off |
The debugger does not print static members. |
This command enables or disables printing static members when showing a C++ object.
(idb) set print stat off (idb) p *jb $3 = {JBfoo = 1} (idb) set print stat on (idb) p *jb $4 = {JBfoo = 1, static yoyo = 99} (idb)
Copyright © 2001-2011, Intel Corporation. All rights reserved.