diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2014-11-28 01:48:38 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-05 18:01:05 +0000 |
commit | 07f7764e9586aa45b81db413993c6e055938ac35 (patch) | |
tree | 8d4433926f2f0a20d0fb5aca4d041d7f3d153985 /meta | |
parent | 8403b751086378290961c5119c861194a04731ab (diff) | |
download | poky-07f7764e9586aa45b81db413993c6e055938ac35.tar.gz |
qt4: disable webkit for mips64 n32 temporarily
Disable webkit for mips64 n32 temporarily that fails to compile.
The webkit package also disable the build for n32:
f5c4d18 webkit/midori: block to build webkit on mips64 with libn32 ABI
The opened defect in qt upstream is:
https://bugreports.qt-project.org/browse/QTBUG-39224
(From OE-Core rev: 68d274be3e07689e749d832fbb01712e00fb4545)
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-qt/qt4/qt4-4.8.6.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-qt/qt4/qt4-4.8.6.inc b/meta/recipes-qt/qt4/qt4-4.8.6.inc index ae6692b50a..924a6ad65d 100644 --- a/meta/recipes-qt/qt4/qt4-4.8.6.inc +++ b/meta/recipes-qt/qt4/qt4-4.8.6.inc | |||
@@ -31,6 +31,11 @@ SRC_URI[sha256sum] = "8b14dd91b52862e09b8e6a963507b74bc2580787d171feda197badfa70 | |||
31 | 31 | ||
32 | S = "${WORKDIR}/qt-everywhere-opensource-src-${PV}" | 32 | S = "${WORKDIR}/qt-everywhere-opensource-src-${PV}" |
33 | 33 | ||
34 | # disable webkit for mips64 n32 temporarily that fails to compile, | ||
35 | # qt upstream defect: | ||
36 | # https://bugreports.qt-project.org/browse/QTBUG-39224 | ||
37 | QT_CONFIG_FLAGS_append_mips64 = "${@bb.utils.contains("TUNE_FEATURES", "n32", " -no-webkit", "" ,d)}" | ||
38 | |||
34 | FILES_${QT_BASE_NAME}-tools_append = " ${bindir}/qml ${bindir}/qmlplugindump" | 39 | FILES_${QT_BASE_NAME}-tools_append = " ${bindir}/qml ${bindir}/qmlplugindump" |
35 | FILES_${QT_BASE_NAME}-tools-dbg_append = " ${bindir}/.debug/qml ${bindir}/.debug/qmlplugindump" | 40 | FILES_${QT_BASE_NAME}-tools-dbg_append = " ${bindir}/.debug/qml ${bindir}/.debug/qmlplugindump" |
36 | 41 | ||