summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2017-09-04 16:37:32 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2017-09-05 08:11:06 +0000
commita98bef33f26f06831ba728b03fb22bf339f42c0f (patch)
tree3b706bfc88512b7ca15e7ef8fdcf91f8e11b590b
parentd3364371411d4c9ee53d9d1d378e6bbd68946c0d (diff)
Give up earlier on MIPS64 and don't tell users it is supported
Chromium doesn't currently build on MIPS64, so we shouldn't tell people it might work. Task-number: QTBUG-62655 Change-Id: I56e798cae6914cc8087f1a6a51f07383e81f86c1 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
-rw-r--r--mkspecs/features/functions.prf5
1 files changed, 3 insertions, 2 deletions
diff --git a/mkspecs/features/functions.prf b/mkspecs/features/functions.prf
index 56894e58a..b78d2a112 100644
--- a/mkspecs/features/functions.prf
+++ b/mkspecs/features/functions.prf
@@ -81,9 +81,10 @@ defineTest(isPlatformSupported) {
defineTest(isArchSupported) {
contains(QT_ARCH, "i386")|contains(QT_ARCH, "x86_64"): return(true)
contains(QT_ARCH, "arm")|contains(QT_ARCH, "arm64"): return(true)
- contains(QT_ARCH, "mips")|contains(QT_ARCH, "mips64"): return(true)
+ contains(QT_ARCH, "mips"): return(true)
+# contains(QT_ARCH, "mips64"): return(true)
- skipBuild("QtWebEngine can only be built for x86, x86-64, ARM, Aarch64, MIPSel, and MIPS64 architectures.")
+ skipBuild("QtWebEngine can only be built for x86, x86-64, ARM, Aarch64, and MIPSel architectures.")
return(false)
}