diff options
author | Kai Kang <kai.kang@windriver.com> | 2013-06-28 15:48:46 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-28 10:41:43 +0100 |
commit | 17890ebd637da0b3bf78804002d8b4f0ace078d2 (patch) | |
tree | dc31c3a9c2986582e252ecf1867b10dfa6bb4b6a /meta/classes/qt4x11.bbclass | |
parent | f5252fea11e13dbcec1c277cf1bf0d7e61b60690 (diff) | |
download | openembedded-core-17890ebd637da0b3bf78804002d8b4f0ace078d2.tar.gz openembedded-core-17890ebd637da0b3bf78804002d8b4f0ace078d2.tar.bz2 openembedded-core-17890ebd637da0b3bf78804002d8b4f0ace078d2.zip |
qt4*.bbclass: disable build qt on mips64 with 64 bits userspace
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>
Diffstat (limited to 'meta/classes/qt4x11.bbclass')
-rw-r--r-- | meta/classes/qt4x11.bbclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/qt4x11.bbclass b/meta/classes/qt4x11.bbclass index b06e15d29e..65d196afc6 100644 --- a/meta/classes/qt4x11.bbclass +++ b/meta/classes/qt4x11.bbclass @@ -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" |