forked from qt-creator/qt-creator
ProjectExplorer: Include device into default gcc description
Change-Id: I2dcea9baa3693b7046e0223b66d0160a3a6b32d7 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -306,11 +306,11 @@ QString GccToolChain::defaultDisplayName() const
|
|||||||
const Abi abi = targetAbi();
|
const Abi abi = targetAbi();
|
||||||
if (abi.architecture() == Abi::UnknownArchitecture || abi.wordWidth() == 0)
|
if (abi.architecture() == Abi::UnknownArchitecture || abi.wordWidth() == 0)
|
||||||
return type;
|
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()),
|
ToolChainManager::displayNameOfLanguageId(language()),
|
||||||
Abi::toString(abi.architecture()),
|
Abi::toString(abi.architecture()),
|
||||||
Abi::toString(abi.wordWidth()),
|
Abi::toString(abi.wordWidth()),
|
||||||
compilerCommand().parentDir().toUserOutput());
|
compilerCommand().toUserOutput());
|
||||||
}
|
}
|
||||||
|
|
||||||
LanguageExtensions GccToolChain::defaultLanguageExtensions() const
|
LanguageExtensions GccToolChain::defaultLanguageExtensions() const
|
||||||
|
Reference in New Issue
Block a user