ProjectExplorer: Include device into default gcc description

Change-Id: I2dcea9baa3693b7046e0223b66d0160a3a6b32d7
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
hjk
2021-04-29 13:16:02 +02:00
parent 1366a9ad75
commit 76675d9384

View File

@@ -306,11 +306,11 @@ QString GccToolChain::defaultDisplayName() const
const Abi abi = targetAbi();
if (abi.architecture() == Abi::UnknownArchitecture || abi.wordWidth() == 0)
return type;
return tr("%1 (%2, %3 %4 in %5)").arg(type,
return tr("%1 (%2, %3 %4 at %5)").arg(type,
ToolChainManager::displayNameOfLanguageId(language()),
Abi::toString(abi.architecture()),
Abi::toString(abi.wordWidth()),
compilerCommand().parentDir().toUserOutput());
compilerCommand().toUserOutput());
}
LanguageExtensions GccToolChain::defaultLanguageExtensions() const