Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use @lldb.command Decorator for LLDB Script Loading #7

Closed
p-x9 opened this issue Sep 13, 2023 · 1 comment
Closed

Use @lldb.command Decorator for LLDB Script Loading #7

p-x9 opened this issue Sep 13, 2023 · 1 comment

Comments

@p-x9
Copy link
Owner

p-x9 commented Sep 13, 2023

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"')

def my_custom_command(debugger, command, result, internal_dict):
    # Implementation of the custom LLDB command here

↓↓↓↓↓↓

New

@lldb.command('yyy', doc='DESCRIPTION')
def my_custom_command(debugger, command, result, internal_dict):
    # Implementation of the custom LLDB command here
@p-x9
Copy link
Owner Author

p-x9 commented Sep 25, 2023

From now on, we will define custom commands based on lldbhelper.LLDBCommandBase.

ref. #24

For simple commands, I suggest using @lldb.command decorator to define them.

@p-x9 p-x9 closed this as completed Sep 25, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant