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 17:42:46 +0000 |
commit | 68d274be3e07689e749d832fbb01712e00fb4545 (patch) | |
tree | eaee08276cf36cd2ed544278b5104187a7ca4e6d /meta/recipes-qt/qt4 | |
parent | 28abbcc5cc4fcea23528027ef2c0faebcd9474c8 (diff) | |
download | openembedded-core-68d274be3e07689e749d832fbb01712e00fb4545.tar.gz openembedded-core-68d274be3e07689e749d832fbb01712e00fb4545.tar.bz2 openembedded-core-68d274be3e07689e749d832fbb01712e00fb4545.zip |
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
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-qt/qt4')
-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 S = "${WORKDIR}/qt-everywhere-opensource-src-${PV}" +# disable webkit for mips64 n32 temporarily that fails to compile, +# qt upstream defect: +# https://bugreports.qt-project.org/browse/QTBUG-39224 +QT_CONFIG_FLAGS_append_mips64 = "${@bb.utils.contains("TUNE_FEATURES", "n32", " -no-webkit", "" ,d)}" + FILES_${QT_BASE_NAME}-tools_append = " ${bindir}/qml ${bindir}/qmlplugindump" FILES_${QT_BASE_NAME}-tools-dbg_append = " ${bindir}/.debug/qml ${bindir}/.debug/qmlplugindump" |