forked from qt-creator/qt-creator
More FileName::pathAppended()
Change-Id: Ie20ec34ea9712b3ec49e6233b23cef84c2019f03 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
@@ -591,9 +591,9 @@ void AndroidRunnerWorker::handleJdbWaiting()
|
||||
|
||||
auto jdbPath = AndroidConfigurations::currentConfig().openJDKLocation().pathAppended("bin");
|
||||
if (Utils::HostOsInfo::isWindowsHost())
|
||||
jdbPath.appendPath("jdb.exe");
|
||||
jdbPath = jdbPath.pathAppended("jdb.exe");
|
||||
else
|
||||
jdbPath.appendPath("jdb");
|
||||
jdbPath = jdbPath.pathAppended("jdb");
|
||||
|
||||
QStringList jdbArgs("-connect");
|
||||
jdbArgs << QString("com.sun.jdi.SocketAttach:hostname=localhost,port=%1")
|
||||
|
||||
Reference in New Issue
Block a user