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.
|
||||
return;
|
||||
}
|
||||
if (ba.contains("lldb")) {
|
||||
if (ba.contains("lldb") || ba.startsWith("LLDB")) {
|
||||
m_engineType = LldbEngineType;
|
||||
m_abis = Abi::abisOfBinary(m_command);
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user