2012-12-18 59 views

回答

1

與Python你可以添加類似下面你gdbinit

py 
def on_bin_echo(): gdb.execute("set arg -d") 
exec_funcs = {"/bin/echo" : on_bin_echo} 
map(lambda x: exec_funcs[x.filename]() if exec_funcs.has_key(x.filename) else None, gdb.objfiles()) 
end 
相關問題