forked from qt-creator/qt-creator
GCCE: Use make.exe on windows
Use make.exe (not make) on windows to match what RVCT does. This is a cosmetic change to stop percieved flickering when switching between RVCT and GCCE tool chains.
This commit is contained in:
@@ -117,6 +117,15 @@ void GcceToolChain::addToEnvironment(Utils::Environment &env) const
|
||||
env.set(QLatin1String("LANG"), QString(QLatin1Char('C')));
|
||||
}
|
||||
|
||||
QString GcceToolChain::makeCommand() const
|
||||
{
|
||||
#if defined(Q_OS_WIN)
|
||||
return QLatin1String("make.exe");
|
||||
#else
|
||||
return QLatin1String("make");
|
||||
#endif
|
||||
}
|
||||
|
||||
QString GcceToolChain::defaultMakeTarget() const
|
||||
{
|
||||
return QLatin1String("gcce");
|
||||
|
@@ -49,6 +49,7 @@ public:
|
||||
|
||||
QByteArray predefinedMacros() const;
|
||||
void addToEnvironment(Utils::Environment &env) const;
|
||||
QString makeCommand() const;
|
||||
QString defaultMakeTarget() const;
|
||||
|
||||
ProjectExplorer::ToolChain *clone() const;
|
||||
|
Reference in New Issue
Block a user