forked from qt-creator/qt-creator
debugger: add C:/ndk_buildrepos/qt-desktop/src as possible source location
The whole approach is broken. Task-number: QTCREATORBUG-3804
This commit is contained in:
@@ -4507,10 +4507,13 @@ void GdbEngine::handleInferiorPrepared()
|
|||||||
if (!qtInstallPath.isEmpty()) {
|
if (!qtInstallPath.isEmpty()) {
|
||||||
QByteArray qtBuildPath;
|
QByteArray qtBuildPath;
|
||||||
#if defined(Q_OS_WIN)
|
#if defined(Q_OS_WIN)
|
||||||
qtBuildPath = "C:/qt-greenhouse/Trolltech/Code_less_create_more/Trolltech/Code_less_create_more/Troll/4.6/qt";
|
qtBuildPath = "C:/qt-greenhouse/Trolltech/Code_less_create_more/"
|
||||||
|
"Trolltech/Code_less_create_more/Troll/4.6/qt";
|
||||||
postCommand("set substitute-path " + qtBuildPath + ' ' + qtInstallPath);
|
postCommand("set substitute-path " + qtBuildPath + ' ' + qtInstallPath);
|
||||||
qtBuildPath = "C:/iwmake/build_mingw_opensource";
|
qtBuildPath = "C:/iwmake/build_mingw_opensource";
|
||||||
postCommand("set substitute-path " + qtBuildPath + ' ' + qtInstallPath);
|
postCommand("set substitute-path " + qtBuildPath + ' ' + qtInstallPath);
|
||||||
|
qtBuildPath = "C:/ndk_buildrepos/qt-desktop/src";
|
||||||
|
postCommand("set substitute-path " + qtBuildPath + ' ' + qtInstallPath);
|
||||||
#elif defined(Q_OS_UNIX) && !defined (Q_OS_MAC)
|
#elif defined(Q_OS_UNIX) && !defined (Q_OS_MAC)
|
||||||
qtBuildPath = "/var/tmp/qt-src";
|
qtBuildPath = "/var/tmp/qt-src";
|
||||||
postCommand("set substitute-path " + qtBuildPath + ' ' + qtInstallPath);
|
postCommand("set substitute-path " + qtBuildPath + ' ' + qtInstallPath);
|
||||||
|
Reference in New Issue
Block a user