diff options
author | Tamas Berghammer <tberghammer@google.com> | 2015-07-02 10:03:37 +0000 |
---|---|---|
committer | Tamas Berghammer <tberghammer@google.com> | 2015-07-02 10:03:37 +0000 |
commit | 3937bc650cad69cbd607ca3ea64ea6623808fc19 (patch) | |
tree | 685bc7f3f945e796a3196adeefb7fdf2278f905f /lldb/source/Interpreter/CommandInterpreter.cpp | |
parent | 1023668bc2d625e7bb5c3ee776175d4e031b6e97 (diff) | |
download | bcm5719-llvm-3937bc650cad69cbd607ca3ea64ea6623808fc19.tar.gz bcm5719-llvm-3937bc650cad69cbd607ca3ea64ea6623808fc19.zip |
Add new bugreport command to lldb
The new command add functionality to print out domain specific
information for reporting a bug. Currently the only supported
domain is stack unwinding (with "bugreport unwind") but adding
new domains is fairly easy.
Differential revision: http://reviews.llvm.org/D10868
llvm-svn: 241252
Diffstat (limited to 'lldb/source/Interpreter/CommandInterpreter.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandInterpreter.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index 481d69eb08a..1da541b8c00 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -17,6 +17,7 @@ #include "../Commands/CommandObjectApropos.h" #include "../Commands/CommandObjectArgs.h" #include "../Commands/CommandObjectBreakpoint.h" +#include "../Commands/CommandObjectBugreport.h" #include "../Commands/CommandObjectDisassemble.h" #include "../Commands/CommandObjectExpression.h" #include "../Commands/CommandObjectFrame.h" @@ -421,6 +422,7 @@ CommandInterpreter::LoadCommandDictionary () m_command_dict["apropos"] = CommandObjectSP (new CommandObjectApropos (*this)); m_command_dict["breakpoint"]= CommandObjectSP (new CommandObjectMultiwordBreakpoint (*this)); + m_command_dict["bugreport"] = CommandObjectSP (new CommandObjectMultiwordBugreport (*this)); m_command_dict["command"] = CommandObjectSP (new CommandObjectMultiwordCommands (*this)); m_command_dict["disassemble"] = CommandObjectSP (new CommandObjectDisassemble (*this)); m_command_dict["expression"]= CommandObjectSP (new CommandObjectExpression (*this)); |