forked from qt-creator/qt-creator
Debugger: Recognize "LLDB" in debugger --version output
Change-Id: I133ec0679a3335ad14d511c0846e10e90a4679d5 Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -78,7 +78,7 @@ void DebuggerItem::reinitializeFromFile()
|
|||||||
m_abis = Abi::abisOfBinary(m_command); // FIXME: Wrong.
|
m_abis = Abi::abisOfBinary(m_command); // FIXME: Wrong.
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (ba.contains("lldb")) {
|
if (ba.contains("lldb") || ba.startsWith("LLDB")) {
|
||||||
m_engineType = LldbEngineType;
|
m_engineType = LldbEngineType;
|
||||||
m_abis = Abi::abisOfBinary(m_command);
|
m_abis = Abi::abisOfBinary(m_command);
|
||||||
return;
|
return;
|
||||||
|
|||||||
Reference in New Issue
Block a user