forked from qt-creator/qt-creator
Also output which qmake is used to build the debugging lib.
Should help in debugging.
This commit is contained in:
@@ -1453,7 +1453,7 @@ QString QtVersion::buildDebuggingHelperLibrary()
|
|||||||
|
|
||||||
output += QString("Building debugging helper library in %1\n").arg(directory);
|
output += QString("Building debugging helper library in %1\n").arg(directory);
|
||||||
output += "\n";
|
output += "\n";
|
||||||
output += "Runinng qmake...\n";
|
output += QString("Runinng %1 ...\n").arg(qmakeCommand());
|
||||||
|
|
||||||
QProcess qmake;
|
QProcess qmake;
|
||||||
ProjectExplorer::Environment env = ProjectExplorer::Environment::systemEnvironment();
|
ProjectExplorer::Environment env = ProjectExplorer::Environment::systemEnvironment();
|
||||||
@@ -1487,7 +1487,7 @@ QString QtVersion::buildDebuggingHelperLibrary()
|
|||||||
QString makeFullPath = env.searchInPath(make);
|
QString makeFullPath = env.searchInPath(make);
|
||||||
output += "\n";
|
output += "\n";
|
||||||
if (!makeFullPath.isEmpty()) {
|
if (!makeFullPath.isEmpty()) {
|
||||||
output += QString("Running %1...\n").arg(makeFullPath);
|
output += QString("Running %1 ...\n").arg(makeFullPath);
|
||||||
qmake.start(makeFullPath, QStringList());
|
qmake.start(makeFullPath, QStringList());
|
||||||
qmake.waitForFinished();
|
qmake.waitForFinished();
|
||||||
output += qmake.readAll();
|
output += qmake.readAll();
|
||||||
|
Reference in New Issue
Block a user