aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/cpp/android-gcc.qbs
diff options
context:
space:
mode:
authorBogDan Vatra <bogdan@kde.org>2019-04-25 17:02:01 +0300
committerBogDan Vatra <bogdan@kdab.com>2019-04-26 09:27:48 +0000
commit5b0271905f491205c6c70eaa33b2c429c13f4536 (patch)
treece11f9894fbd7ebc5e238698616eace67cadbe47 /share/qbs/modules/cpp/android-gcc.qbs
parentb381775da143b8b9b5ac610bfd38485d341d7c19 (diff)
Android: Nuke mips[64] abi support
Mips' abis were removed long time ago from the Android NDK Change-Id: I8d006b6758ee4faa7f2d697a7252981470d43e1a Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'share/qbs/modules/cpp/android-gcc.qbs')
-rw-r--r--share/qbs/modules/cpp/android-gcc.qbs8
1 files changed, 1 insertions, 7 deletions
diff --git a/share/qbs/modules/cpp/android-gcc.qbs b/share/qbs/modules/cpp/android-gcc.qbs
index 99865f8c6..7642b246a 100644
--- a/share/qbs/modules/cpp/android-gcc.qbs
+++ b/share/qbs/modules/cpp/android-gcc.qbs
@@ -113,7 +113,7 @@ LinuxGCC {
libraryPaths: {
var prefix = FileInfo.joinPaths(sysroot, "usr");
var paths = [];
- if (Android.ndk.abi === "mips64" || Android.ndk.abi === "x86_64") // no lib64 for arm64-v8a
+ if (Android.ndk.abi === "x86_64") // no lib64 for arm64-v8a
paths.push(FileInfo.joinPaths(prefix, "lib64"));
paths.push(FileInfo.joinPaths(prefix, "lib"));
paths.push(stlLibsDir);
@@ -165,12 +165,6 @@ LinuxGCC {
return qbs.architecture;
case "x86":
return "i686";
- case "mips":
- case "mipsel":
- return "mipsel";
- case "mips64":
- case "mips64el":
- return "mips64el";
}
}