forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/6.0' into 7.0
Change-Id: I61bc71d3a4e786b5392aed408f0efe4d28fe7e67
This commit is contained in:
@@ -1065,10 +1065,11 @@ static bool isDocker(const Kit *k)
|
||||
static bool isWindowsARM64(const Kit *k)
|
||||
{
|
||||
ToolChain *toolchain = ToolChainKitAspect::cxxToolChain(k);
|
||||
QTC_ASSERT(toolchain, return false);
|
||||
if (!toolchain)
|
||||
return false;
|
||||
const Abi targetAbi = toolchain->targetAbi();
|
||||
return targetAbi.os() == Abi::WindowsOS && targetAbi.architecture() == Abi::ArmArchitecture
|
||||
&& targetAbi.wordWidth() == 64;
|
||||
&& targetAbi.wordWidth() == 64;
|
||||
}
|
||||
|
||||
static CommandLine defaultInitialCMakeCommand(const Kit *k, const QString buildType)
|
||||
|
||||
Reference in New Issue
Block a user