aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlessandro Portale <alessandro.portale@qt.io>2021-10-12 14:35:00 +0200
committerAlessandro Portale <alessandro.portale@qt.io>2021-10-12 13:02:20 +0000
commit67031627830ae6b7e1ce1cdb79e9b5fe34434783 (patch)
treec44466dc108a950076916e9088a62d12fd433f04
parentd20a0c8c03675b24b266d6c3430442fed36fc87a (diff)
Debugger: Add commandline to "Unable to determine gdb target ABI" warningv6.0.0-beta1
Helps finding out which gdb doesn't want to tell. Change-Id: Iab374f577ee133a3bad576dd425cad5c91391f41 Reviewed-by: hjk <hjk@qt.io>
-rw-r--r--src/plugins/debugger/debuggeritem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggeritem.cpp b/src/plugins/debugger/debuggeritem.cpp
index 36e066e09a..3a5060cbe5 100644
--- a/src/plugins/debugger/debuggeritem.cpp
+++ b/src/plugins/debugger/debuggeritem.cpp
@@ -225,7 +225,7 @@ void DebuggerItem::reinitializeFromFile(const Environment &sysEnv, QString *erro
return;
}
- qWarning() << "Unable to determine gdb target ABI";
+ qWarning() << "Unable to determine gdb target ABI via" << proc.commandLine().toUserOutput();
//! \note If unable to determine the GDB ABI, no ABI is appended to m_abis here.
return;
}