forked from qt-creator/qt-creator
Fix thinko
Change-Id: I835b42cc1d16df43200579cc1bf85422784bf79d Reviewed-on: http://codereview.qt-project.org/5085 Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>
This commit is contained in:
@@ -472,7 +472,7 @@ bool Abi::isCompatibleWith(const Abi &other) const
|
|||||||
// We leave it to the specific targets to catch filter out the tool chains that do not
|
// We leave it to the specific targets to catch filter out the tool chains that do not
|
||||||
// work for them.
|
// work for them.
|
||||||
if (!isCompat && (architecture() == other.architecture() || other.architecture() == Abi::UnknownArchitecture)
|
if (!isCompat && (architecture() == other.architecture() || other.architecture() == Abi::UnknownArchitecture)
|
||||||
&& (os() == other.os() == LinuxOS)
|
&& ((os() == other.os()) && (os() == LinuxOS))
|
||||||
&& (osFlavor() == GenericLinuxFlavor || other.osFlavor() == GenericLinuxFlavor)
|
&& (osFlavor() == GenericLinuxFlavor || other.osFlavor() == GenericLinuxFlavor)
|
||||||
&& (binaryFormat() == other.binaryFormat() || other.binaryFormat() == Abi::UnknownFormat)
|
&& (binaryFormat() == other.binaryFormat() || other.binaryFormat() == Abi::UnknownFormat)
|
||||||
&& ((wordWidth() == other.wordWidth() && wordWidth() != 0) || other.wordWidth() == 0))
|
&& ((wordWidth() == other.wordWidth() && wordWidth() != 0) || other.wordWidth() == 0))
|
||||||
|
|||||||
Reference in New Issue
Block a user