2009-06-05 16:10:26 +02:00
|
|
|
#include "gccetoolchain.h"
|
2009-06-09 13:44:33 +02:00
|
|
|
#include "qt4project.h"
|
2009-06-05 16:10:26 +02:00
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
|
|
|
|
|
#include <QtCore/QDir>
|
|
|
|
|
#include <QtDebug>
|
|
|
|
|
|
|
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
using namespace Qt4ProjectManager::Internal;
|
|
|
|
|
|
2009-06-10 18:45:32 +02:00
|
|
|
namespace {
|
|
|
|
|
const char *GCCE_COMMAND = "arm-none-symbianelf-gcc.exe";
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-05 16:10:26 +02:00
|
|
|
GCCEToolChain::GCCEToolChain(S60Devices::Device device)
|
2009-07-14 12:14:58 +02:00
|
|
|
: GccToolChain(QLatin1String(GCCE_COMMAND)),
|
|
|
|
|
m_deviceId(device.id),
|
2009-06-05 16:10:26 +02:00
|
|
|
m_deviceName(device.name),
|
|
|
|
|
m_deviceRoot(device.epocRoot)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ToolChain::ToolChainType GCCEToolChain::type() const
|
|
|
|
|
{
|
|
|
|
|
return ToolChain::GCCE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<HeaderPath> GCCEToolChain::systemHeaderPaths()
|
|
|
|
|
{
|
2009-07-14 12:14:58 +02:00
|
|
|
GccToolChain::systemHeaderPaths();
|
2009-06-10 18:45:32 +02:00
|
|
|
m_systemHeaderPaths.append(HeaderPath(QString("%1\\epoc32\\include").arg(m_deviceRoot), HeaderPath::GlobalHeaderPath));
|
|
|
|
|
m_systemHeaderPaths.append(HeaderPath(QString("%1\\epoc32\\include\\stdapis").arg(m_deviceRoot), HeaderPath::GlobalHeaderPath));
|
|
|
|
|
m_systemHeaderPaths.append(HeaderPath(QString("%1\\epoc32\\include\\stdapis\\sys").arg(m_deviceRoot), HeaderPath::GlobalHeaderPath));
|
|
|
|
|
m_systemHeaderPaths.append(HeaderPath(QString("%1\\epoc32\\include\\variant").arg(m_deviceRoot), HeaderPath::GlobalHeaderPath));
|
2009-06-05 16:10:26 +02:00
|
|
|
return m_systemHeaderPaths;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GCCEToolChain::addToEnvironment(ProjectExplorer::Environment &env)
|
|
|
|
|
{
|
2009-06-10 18:45:32 +02:00
|
|
|
// TODO: do we need to set path to gcce?
|
2009-06-05 16:10:26 +02:00
|
|
|
env.prependOrSetPath(QString("%1\\epoc32\\tools").arg(m_deviceRoot)); // e.g. make.exe
|
|
|
|
|
env.prependOrSetPath(QString("%1\\epoc32\\gcc\\bin").arg(m_deviceRoot)); // e.g. gcc.exe
|
|
|
|
|
env.set("EPOCDEVICE", QString("%1:%2").arg(m_deviceId, m_deviceName));
|
|
|
|
|
env.set("EPOCROOT", S60Devices::cleanedRootPath(m_deviceRoot));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString GCCEToolChain::makeCommand() const
|
|
|
|
|
{
|
|
|
|
|
return "make";
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-22 14:32:54 +02:00
|
|
|
QString GCCEToolChain::defaultMakeTarget() const
|
2009-06-05 16:10:26 +02:00
|
|
|
{
|
2009-06-22 14:32:54 +02:00
|
|
|
const Qt4Project *qt4project = qobject_cast<const Qt4Project *>(m_project);
|
2009-06-09 13:44:33 +02:00
|
|
|
if (qt4project) {
|
|
|
|
|
if (!(QtVersion::QmakeBuildConfig(qt4project->qmakeStep()->value(
|
2009-06-22 14:32:54 +02:00
|
|
|
qt4project->activeBuildConfiguration(),
|
2009-06-09 13:44:33 +02:00
|
|
|
"buildConfiguration").toInt()) & QtVersion::DebugBuild)) {
|
|
|
|
|
return "release-gcce";
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-06-05 16:10:26 +02:00
|
|
|
return "debug-gcce";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool GCCEToolChain::equals(ToolChain *other) const
|
|
|
|
|
{
|
|
|
|
|
return (other->type() == type()
|
|
|
|
|
&& m_deviceId == static_cast<GCCEToolChain *>(other)->m_deviceId
|
|
|
|
|
&& m_deviceName == static_cast<GCCEToolChain *>(other)->m_deviceName);
|
|
|
|
|
}
|
2009-06-22 14:32:54 +02:00
|
|
|
|
|
|
|
|
void GCCEToolChain::setProject(const ProjectExplorer::Project *project)
|
|
|
|
|
{
|
|
|
|
|
m_project = project;
|
|
|
|
|
}
|