]> code.ossystems Code Review - openembedded-core.git/commitdiff
qt4*.bbclass: disable build qt on mips64 with 64 bits userspace
authorKai Kang <kai.kang@windriver.com>
Fri, 28 Jun 2013 07:48:46 +0000 (15:48 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 28 Jun 2013 09:41:43 +0000 (10:41 +0100)
Qt/qt-embedded build fails on mips64 with 64 bits userspace. Set
COMPATIBLE_HOST in qt4e.bbclass and qt4x11.bbclass to disable build
qt/qt-embedded and packages which inherit these two classes on mips64
with 64 bits userspace.

Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/qt4e.bbclass
meta/classes/qt4x11.bbclass

index de2a68d25b61d769cfda282e6cc383219e7799e5..d7f5df842a368785186f5f572b22fdb44b51786c 100644 (file)
@@ -18,3 +18,6 @@ EXTRA_QMAKEVARS_PRE += " QT_LIBINFIX=${QT_LIBINFIX} "
 
 # Qt4 uses atomic instructions not supported in thumb mode
 ARM_INSTRUCTION_SET = "arm"
+
+# Qt4 could NOT be built on MIPS64 with 64 bits userspace
+COMPATIBLE_HOST_mips64 = "mips64.*-linux-gnun32"
index b06e15d29e7321a1c328a3c123dd6e4019d929d2..65d196afc676acea23bddb2599b0558153251cbe 100644 (file)
@@ -9,3 +9,6 @@ QT_LIBINFIX = ""
 
 # Qt4 uses atomic instructions not supported in thumb mode
 ARM_INSTRUCTION_SET = "arm"
+
+# Qt4 could NOT be built on MIPS64 with 64 bits userspace
+COMPATIBLE_HOST_mips64 = "mips64.*-linux-gnun32"