forked from qt-creator/qt-creator
ToolChain: Turn id into a QByteArray
That should take a couple of bytes less to store. Make sure this change is invisible to the configuration files. Change-Id: If5e73b52493c9164de9e342021d8153d274b350f Reviewed-by: Daniel Teske <daniel.teske@theqtcompany.com>
This commit is contained in:
@@ -157,9 +157,8 @@ void IosConfigurations::updateAutomaticKitList()
|
||||
if (p.compilerPath.toFileInfo().baseName().startsWith(QLatin1String("clang")))
|
||||
toolchain = new ClangToolChain(ToolChain::AutoDetection);
|
||||
else
|
||||
toolchain = new GccToolChain(
|
||||
QLatin1String(ProjectExplorer::Constants::GCC_TOOLCHAIN_ID),
|
||||
ToolChain::AutoDetection);
|
||||
toolchain = new GccToolChain(ProjectExplorer::Constants::GCC_TOOLCHAIN_ID,
|
||||
ToolChain::AutoDetection);
|
||||
QString baseDisplayName = p.name;
|
||||
QString displayName = baseDisplayName;
|
||||
for (int iVers = 1; iVers < 100; ++iVers) {
|
||||
|
||||
Reference in New Issue
Block a user