summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChangqing Li <changqing.li@windriver.com>2024-08-26 16:51:48 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-08-28 09:14:26 +0100
commite91fe496fe2a6dd5ba87b8599e763322fa8d1b4e (patch)
treebb6ec9b4a7721a91228174bcdc8c601b2ed854f0
parentc852c1679efb95e0a6e422d515a06772df55f6cc (diff)
downloadpoky-e91fe496fe2a6dd5ba87b8599e763322fa8d1b4e.tar.gz
webkitgtk: fix do_configure error on beaglebone-yocto
* According to latest comment [1] and the mentioned pull request [2], build an ENABLE(WEBASSEMBLY) && !ENABLE(JIT) configuration is supported, so original issue already fixed in current version, the EXTRA_OECMAKE setting is not needed anymore. * This EXTRA_OECMAKE setting causes following configure error on beaglebone-yocto, remove the setting to let the configure process decide the configuration: CMake Error at Source/cmake/WebKitFeatures.cmake:312 (message): ENABLE_JIT conflicts with ENABLE_C_LOOP. You must disable one or the other. [YOCTO #15254] [1] https://github.com/WebKit/WebKit/pull/17447 [2] https://github.com/WebKit/WebKit/pull/17688 (From OE-Core rev: 26a34fd71659e32e56ccc4f23e79aa62f4bc062d) Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-sato/webkit/webkitgtk_2.44.3.bb12
1 files changed, 0 insertions, 12 deletions
diff --git a/meta/recipes-sato/webkit/webkitgtk_2.44.3.bb b/meta/recipes-sato/webkit/webkitgtk_2.44.3.bb
index a79a9c3824..90fb7a1d42 100644
--- a/meta/recipes-sato/webkit/webkitgtk_2.44.3.bb
+++ b/meta/recipes-sato/webkit/webkitgtk_2.44.3.bb
@@ -114,18 +114,6 @@ EXTRA_OECMAKE:append:armv4 = " -DENABLE_JIT=OFF "
114EXTRA_OECMAKE:append:armv5 = " -DENABLE_JIT=OFF " 114EXTRA_OECMAKE:append:armv5 = " -DENABLE_JIT=OFF "
115EXTRA_OECMAKE:append:armv6 = " -DENABLE_JIT=OFF " 115EXTRA_OECMAKE:append:armv6 = " -DENABLE_JIT=OFF "
116 116
117# And for armv7* don't enable it for softfp, because after:
118# https://github.com/WebKit/WebKit/commit/a2ec4ef1997d6fafa6ffc607bffb54e76168a918
119# https://bugs.webkit.org/show_bug.cgi?id=242172
120# softfp armv7* fails because WEBASSEMBLY is left enabled by default and JIT gets
121# explicitly disabled causing:
122# http://errors.yoctoproject.org/Errors/Details/734587/
123# PR was sent upstream, but the end result is the same both JIT and WEBASSEMBLY disabled
124# https://github.com/WebKit/WebKit/pull/17447
125EXTRA_OECMAKE:append:armv7a = " -DENABLE_JIT=${@bb.utils.contains('TUNE_FEATURES', 'callconvention-hard', 'ON', 'OFF', d)}"
126EXTRA_OECMAKE:append:armv7r = " -DENABLE_JIT=${@bb.utils.contains('TUNE_FEATURES', 'callconvention-hard', 'ON', 'OFF', d)}"
127EXTRA_OECMAKE:append:armv7ve = " -DENABLE_JIT=${@bb.utils.contains('TUNE_FEATURES', 'callconvention-hard', 'ON', 'OFF', d)}"
128
129EXTRA_OECMAKE:append:mipsarch = " -DUSE_LD_GOLD=OFF " 117EXTRA_OECMAKE:append:mipsarch = " -DUSE_LD_GOLD=OFF "
130EXTRA_OECMAKE:append:powerpc = " -DUSE_LD_GOLD=OFF " 118EXTRA_OECMAKE:append:powerpc = " -DUSE_LD_GOLD=OFF "
131 119