Skip to content
This repository has been archived by the owner on Jun 14, 2024. It is now read-only.

Latest commit

 

History

History
36 lines (26 loc) · 880 Bytes

ISSUE_TEMPLATE.md

File metadata and controls

36 lines (26 loc) · 880 Bytes

Is upstream-bug?

When filing a bug-report, make sure it is indeed a bug in this plugin, and not an upstream (lldb) bug. To that end, please execute the following script in your Python2 REPL, and provide its output:

import lldb

dbg = lldb.SBDebugger.Create()
ci = dbg.GetCommandInterpreter()

def execute(command):
    res = lldb.SBCommandReturnObject()
    ci.HandleCommand(command, res)
    print(res.Succeeded(), res.GetOutput(), res.GetError())

# now execute each command as follows:
execute("target create ...")
execute("your command here")
...output here...