forked from qt-creator/qt-creator
Merge branch 'master' of git@scm.dev.nokia.troll.no:creator/mainline
This commit is contained in:
@@ -406,7 +406,7 @@ ProjectExplorer::ToolChain *Qt4Project::toolChain(const QString &buildConfigurat
|
|||||||
{
|
{
|
||||||
qDebug()<<"Qt4Project::toolChain() for buildconfiguration:"<<buildConfiguration;
|
qDebug()<<"Qt4Project::toolChain() for buildconfiguration:"<<buildConfiguration;
|
||||||
Q_UNUSED(buildConfiguration);
|
Q_UNUSED(buildConfiguration);
|
||||||
ToolChain *m_test;
|
ToolChain *m_test= 0;
|
||||||
QtVersion *version = qtVersion(activeBuildConfiguration());
|
QtVersion *version = qtVersion(activeBuildConfiguration());
|
||||||
ToolChain::ToolChainType t = version->toolchainType();
|
ToolChain::ToolChainType t = version->toolchainType();
|
||||||
if (t == ToolChain::MinGW) {
|
if (t == ToolChain::MinGW) {
|
||||||
@@ -436,9 +436,7 @@ ProjectExplorer::ToolChain *Qt4Project::toolChain(const QString &buildConfigurat
|
|||||||
qDebug()<<"Qt Creator doesn't know about the system includes, nor the systems defines.";
|
qDebug()<<"Qt Creator doesn't know about the system includes, nor the systems defines.";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (ToolChain::equals(m_test, m_toolChain)) {
|
||||||
|
|
||||||
if (m_test == m_toolChain) {
|
|
||||||
delete m_test;
|
delete m_test;
|
||||||
} else {
|
} else {
|
||||||
delete m_toolChain;
|
delete m_toolChain;
|
||||||
@@ -716,7 +714,9 @@ ProjectExplorer::Environment Qt4Project::baseEnvironment(const QString &buildCon
|
|||||||
{
|
{
|
||||||
Environment env = useSystemEnvironment(buildConfiguration) ? Environment(QProcess::systemEnvironment()) : Environment();
|
Environment env = useSystemEnvironment(buildConfiguration) ? Environment(QProcess::systemEnvironment()) : Environment();
|
||||||
qtVersion(buildConfiguration)->addToEnvironment(env);
|
qtVersion(buildConfiguration)->addToEnvironment(env);
|
||||||
toolChain(buildConfiguration)->addToEnvironment(env);
|
ToolChain *tc = toolChain(buildConfiguration);
|
||||||
|
if (tc)
|
||||||
|
tc->addToEnvironment(env);
|
||||||
return env;
|
return env;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user