forked from qt-creator/qt-creator
Debugger: Introduce a debugger engine talking to lldb command line
Change-Id: Ie6b9cb68045db12cff1bbb06a7049529fc39c21f Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -195,19 +195,21 @@ enum LogChannel
|
||||
enum DebuggerEngineType
|
||||
{
|
||||
NoEngineType = 0,
|
||||
GdbEngineType = 0x01,
|
||||
ScriptEngineType = 0x02,
|
||||
CdbEngineType = 0x04,
|
||||
PdbEngineType = 0x08,
|
||||
QmlEngineType = 0x20,
|
||||
QmlCppEngineType = 0x40,
|
||||
LldbEngineType = 0x80,
|
||||
GdbEngineType = 0x001,
|
||||
ScriptEngineType = 0x002,
|
||||
CdbEngineType = 0x004,
|
||||
PdbEngineType = 0x008,
|
||||
QmlEngineType = 0x020,
|
||||
QmlCppEngineType = 0x040,
|
||||
LldbLibEngineType = 0x080,
|
||||
LldbEngineType = 0x100,
|
||||
AllEngineTypes = GdbEngineType
|
||||
| ScriptEngineType
|
||||
| CdbEngineType
|
||||
| PdbEngineType
|
||||
| QmlEngineType
|
||||
| QmlCppEngineType
|
||||
| LldbLibEngineType
|
||||
| LldbEngineType
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user