diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp index 7593b8f90377d2c0d915b024d810a6fea10c1671..5dcef213a68f9df1dc92dc3c8f9662c9aa47f362 100644 --- a/src/plugins/debugger/gdb/gdbengine.cpp +++ b/src/plugins/debugger/gdb/gdbengine.cpp @@ -2089,7 +2089,10 @@ void GdbEngine::extractDataFromInfoBreak(const QString &output, BreakpointData * data->bpLineNumber = re.cap(4); QString full = fullName(re.cap(3)); if (full.isEmpty()) { - qDebug() << "NO FULL NAME KNOWN FOR" << re.cap(3); + // FIXME: This happens without UsePreciseBreakpoints regularily. + // We need to revive that "fill full name mapping bit by bit" + // approach of 1.2.x + //qDebug() << "NO FULL NAME KNOWN FOR" << re.cap(3); full = cleanupFullName(re.cap(3)); if (full.isEmpty()) { qDebug() << "FILE IS NOT RESOLVABLE" << re.cap(3);