aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/abi.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/projectexplorer/abi.cpp')
-rw-r--r--src/plugins/projectexplorer/abi.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/abi.cpp b/src/plugins/projectexplorer/abi.cpp
index 0cb6ca7fb8..fec9f69fd9 100644
--- a/src/plugins/projectexplorer/abi.cpp
+++ b/src/plugins/projectexplorer/abi.cpp
@@ -668,8 +668,10 @@ bool Abi::isCompatibleWith(const Abi &other) const
bool Abi::isFullyCompatibleWith(const Abi &other) const
{
- return *this == other || (wordWidth() == other.wordWidth()
- && compatibleMSVCFlavors(osFlavor(), other.osFlavor()));
+ return *this == other
+ || (wordWidth() == other.wordWidth()
+ && architecture() == other.architecture()
+ && compatibleMSVCFlavors(osFlavor(), other.osFlavor()));
}
bool Abi::isValid() const