forked from qt-creator/qt-creator
Use QT_INSTALL_DATA instead of path() for searching the debugger helper
This commit is contained in:
@@ -171,9 +171,16 @@ QString CMakeManager::findQtDir(const ProjectExplorer::Environment &env)
|
||||
QFileInfo qmake(path + "/" + possibleCommand);
|
||||
if (qmake.exists()) {
|
||||
if (!qtVersionForQMake(qmake.absoluteFilePath()).isNull()) {
|
||||
QDir dir(qmake.absoluteDir());
|
||||
dir.cdUp();
|
||||
return dir.absolutePath();
|
||||
QProcess proc;
|
||||
proc.start(qmake.absoluteFilePath(), QStringList() << "-query" << "QT_INSTALL_DATA");
|
||||
if (proc.waitForFinished()) {
|
||||
return proc.readAll().trimmed();
|
||||
} else {
|
||||
proc.kill();
|
||||
QDir dir(qmake.absoluteDir());
|
||||
dir.cdUp();
|
||||
return dir.absolutePath();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -870,9 +870,12 @@ void QtVersion::setPath(const QString &path)
|
||||
QString QtVersion::dumperLibrary() const
|
||||
{
|
||||
uint hash = qHash(path());
|
||||
QString qtInstallData = versionInfo().value("QT_INSTALL_DATA");
|
||||
if (qtInstallData.isEmpty())
|
||||
qtInstallData = path();
|
||||
QStringList directories;
|
||||
directories
|
||||
<< (path() + "/qtc-debugging-helper/")
|
||||
<< (qtInstallData + "/qtc-debugging-helper/")
|
||||
<< (QApplication::applicationDirPath() + "/../qtc-debugging-helper/" + QString::number(hash)) + "/"
|
||||
<< (QDesktopServices::storageLocation(QDesktopServices::DataLocation) + "/qtc-debugging-helper/" + QString::number(hash)) + "/";
|
||||
foreach(const QString &directory, directories) {
|
||||
@@ -1390,9 +1393,12 @@ QString QtVersion::buildDebuggingHelperLibrary()
|
||||
|
||||
QString output;
|
||||
uint hash = qHash(path());
|
||||
QString qtInstallData = versionInfo().value("QT_INSTALL_DATA");
|
||||
if (qtInstallData.isEmpty())
|
||||
qtInstallData = path();
|
||||
QStringList directories;
|
||||
directories
|
||||
<< path() + "/qtc-debugging-helper/"
|
||||
<< qtInstallData + "/qtc-debugging-helper/"
|
||||
<< QApplication::applicationDirPath() + "/../qtc-debugging-helper/" + QString::number(hash) +"/"
|
||||
<< QDesktopServices::storageLocation (QDesktopServices::DataLocation) + "/qtc-debugging-helper/" + QString::number(hash) +"/";
|
||||
|
||||
|
Reference in New Issue
Block a user