You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, custom commands defined in python are registered by calling command script add.
However, the lldb framework provides a decorator to load custom commands.
It is simpler to use this to write.
Current
def__lldb_init_module(debugger: lldb.SBDebugger, internal_dict: dict) ->None:
debugger.HandleCommand('command script add -f xxx.my_custom_command yyy -h "DESCRIPTION"')
defmy_custom_command(debugger, command, result, internal_dict):
# Implementation of the custom LLDB command here
↓↓↓↓↓↓
New
@lldb.command('yyy', doc='DESCRIPTION')defmy_custom_command(debugger, command, result, internal_dict):
# Implementation of the custom LLDB command here
The text was updated successfully, but these errors were encountered:
Currently, custom commands defined in python are registered by calling
command script add
.However, the lldb framework provides a decorator to load custom commands.
It is simpler to use this to write.
Current
↓↓↓↓↓↓
New
The text was updated successfully, but these errors were encountered: