forked from qt-creator/qt-creator
Debugger: Compile fix
stringSettings() macro-expands internally nowadays. Change-Id: Id702ee852b7c25b8ff7dbca0c6ada529a53a9443 Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
@@ -284,7 +284,7 @@ void LldbEngine::startLldbStage2()
|
||||
m_lldbProc.write("script print(dir())\n");
|
||||
m_lldbProc.write("script theDumper = Dumper()\n"); // This triggers reportState("enginesetupok")
|
||||
|
||||
const QString commands = expand(stringSetting(GdbStartupCommands));
|
||||
const QString commands = stringSetting(GdbStartupCommands);
|
||||
if (!commands.isEmpty())
|
||||
m_lldbProc.write(commands.toLocal8Bit());
|
||||
}
|
||||
|
Reference in New Issue
Block a user