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:46 +0100 |
commit | 44b3c8dfa45fa6a32db46b851a7029e1bacaefb1 (patch) | |
tree | 3edf6eda9d535d7ecbcb627d2ce5da5b13bf75d9 /meta/classes | |
parent | 624160af6e5429c9f08b201bc6599dc8dcb62c3f (diff) | |
download | poky-44b3c8dfa45fa6a32db46b851a7029e1bacaefb1.tar.gz |
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.
(From OE-Core rev: 17890ebd637da0b3bf78804002d8b4f0ace078d2)
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/qt4e.bbclass | 3 | ||||
-rw-r--r-- | meta/classes/qt4x11.bbclass | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/meta/classes/qt4e.bbclass b/meta/classes/qt4e.bbclass index de2a68d25b..d7f5df842a 100644 --- a/meta/classes/qt4e.bbclass +++ b/meta/classes/qt4e.bbclass | |||
@@ -18,3 +18,6 @@ EXTRA_QMAKEVARS_PRE += " QT_LIBINFIX=${QT_LIBINFIX} " | |||
18 | 18 | ||
19 | # Qt4 uses atomic instructions not supported in thumb mode | 19 | # Qt4 uses atomic instructions not supported in thumb mode |
20 | ARM_INSTRUCTION_SET = "arm" | 20 | ARM_INSTRUCTION_SET = "arm" |
21 | |||
22 | # Qt4 could NOT be built on MIPS64 with 64 bits userspace | ||
23 | COMPATIBLE_HOST_mips64 = "mips64.*-linux-gnun32" | ||
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 = "" | |||
9 | 9 | ||
10 | # Qt4 uses atomic instructions not supported in thumb mode | 10 | # Qt4 uses atomic instructions not supported in thumb mode |
11 | ARM_INSTRUCTION_SET = "arm" | 11 | ARM_INSTRUCTION_SET = "arm" |
12 | |||
13 | # Qt4 could NOT be built on MIPS64 with 64 bits userspace | ||
14 | COMPATIBLE_HOST_mips64 = "mips64.*-linux-gnun32" | ||