forked from qt-creator/qt-creator
Fix build on windows in debuggerkitinformation.
Change-Id: I45137f08147d073f8c111c94a6303a90085183ef Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
committed by
Orgad Shaneh
parent
719c87e599
commit
03dbb665b7
@@ -206,7 +206,7 @@ static DebuggerItem::MatchLevel matchSingle(const Abi &debuggerAbi, const Abi &t
|
|||||||
return DebuggerItem::DoesNotMatch;
|
return DebuggerItem::DoesNotMatch;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (debuggerAbi.wordWidth() == 64 and targetAbi.wordWidth() == 32)
|
if (debuggerAbi.wordWidth() == 64 && targetAbi.wordWidth() == 32)
|
||||||
return DebuggerItem::MatchesSomewhat;
|
return DebuggerItem::MatchesSomewhat;
|
||||||
if (debuggerAbi.wordWidth() != 0 && debuggerAbi.wordWidth() != targetAbi.wordWidth())
|
if (debuggerAbi.wordWidth() != 0 && debuggerAbi.wordWidth() != targetAbi.wordWidth())
|
||||||
return DebuggerItem::DoesNotMatch;
|
return DebuggerItem::DoesNotMatch;
|
||||||
|
|||||||
Reference in New Issue
Block a user