forked from qt-creator/qt-creator
Fix non-Linux compilation.
This commit is contained in:
@@ -53,7 +53,8 @@ LibraryDetailsController::LibraryDetailsController(
|
||||
Qt4BuildConfiguration *qt4BuildConfiguration =
|
||||
qobject_cast<Qt4BuildConfiguration *>(project->activeTarget()->activeBuildConfiguration());
|
||||
// if its toolchain is maemo behave the same as we would be on linux
|
||||
if (qt4BuildConfiguration && qt4BuildConfiguration->toolChainType() == ProjectExplorer::ToolChain_GCC_MAEMO)
|
||||
if (qt4BuildConfiguration && (qt4BuildConfiguration->toolChainType() == ProjectExplorer::ToolChain_GCC_MAEMO5
|
||||
|| qt4BuildConfiguration->toolChainType() == ProjectExplorer::ToolChain_GCC_HARMATTAN))
|
||||
m_creatorPlatform = CreatorLinux;
|
||||
#endif
|
||||
|
||||
|
||||
@@ -148,8 +148,10 @@ QStringList QMakeStep::moreArguments()
|
||||
QStringList arguments;
|
||||
#if defined(Q_OS_WIN) || defined(Q_OS_MAC)
|
||||
const ProjectExplorer::ToolChainType type = bc->toolChainType();
|
||||
if (type == ProjectExplorer::ToolChain_GCC_MAEMO)
|
||||
if (type == ProjectExplorer::ToolChain_GCC_MAEMO5
|
||||
|| type == ProjectExplorer::ToolChain_GCC_HARMATTAN) {
|
||||
arguments << QLatin1String("-unix");
|
||||
}
|
||||
#endif
|
||||
if (!bc->qtVersion()->supportsShadowBuilds()) {
|
||||
// We have a target which does not allow shadow building.
|
||||
|
||||
Reference in New Issue
Block a user