forked from qt-creator/qt-creator
Fix 'Attach Debugger' in output pane.
Bring back the slot, suppress a warning about empty binaries in the release check. Task-number: QTCREATORBUG-7677 Change-Id: I2f1703b38b68995a1e2533ed8a6c94985cc3b430 Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -5235,7 +5235,9 @@ bool GdbEngine::attemptQuickStart() const
|
||||
|
||||
void GdbEngine::checkForReleaseBuild()
|
||||
{
|
||||
QString binary = startParameters().executable;
|
||||
const QString binary = startParameters().executable;
|
||||
if (binary.isEmpty())
|
||||
return;
|
||||
ElfReader reader(binary);
|
||||
ElfData elfData = reader.readHeaders();
|
||||
QString error = reader.errorString();
|
||||
|
||||
Reference in New Issue
Block a user