forked from qt-creator/qt-creator
Abi: Remove endianness from ABI
The functionality is not implemented properly, remove it before someone thinks it was. Change-Id: I6e9c423a6b84a4a5fcf4d817e14df97fbdc901c5 Reviewed-by: Jake Petroules <jake.petroules@petroules.com> Reviewed-by: Tim Sander <tim@krieglstein.org> Reviewed-by: Christian Kandeler <christian.kandeler@digia.com> Reviewed-by: Eike Ziller <eike.ziller@digia.com>
This commit is contained in:
@@ -91,11 +91,6 @@ QVariantMap DefaultPropertyProvider::properties(const ProjectExplorer::Kit *k, c
|
||||
qbs::Internal::HostOsInfo::canonicalArchitecture(architecture));
|
||||
}
|
||||
|
||||
if (targetAbi.endianness() == ProjectExplorer::Abi::BigEndian)
|
||||
data.insert(QLatin1String(QBS_ENDIANNESS), QLatin1String("big"));
|
||||
else if (targetAbi.endianness() == ProjectExplorer::Abi::LittleEndian)
|
||||
data.insert(QLatin1String(QBS_ENDIANNESS), QLatin1String("little"));
|
||||
|
||||
if (targetAbi.os() == ProjectExplorer::Abi::WindowsOS) {
|
||||
data.insert(QLatin1String(QBS_TARGETOS), QLatin1String("windows"));
|
||||
data.insert(QLatin1String(QBS_TOOLCHAIN),
|
||||
|
||||
Reference in New Issue
Block a user