diff mbox

webkit: disable on powerpc

Message ID b82a6eacae7968135320.1393165932@argentina
State Accepted
Commit 39a0fa4b0d85389f85f2cfe126e2f10f94542cb8
Headers show

Commit Message

Thomas De Schampheleire Feb. 23, 2014, 2:32 p.m. UTC
webkit does not build correctly on powerpc. There is an upstream bug report
with a partial fix, but with remaining problems.
https://bugs.webkit.org/show_bug.cgi?id=113638

Until this problem is fixed, we disable webkit on powerpc.

Fixes
http://autobuild.buildroot.org/results/3ce/3ce992a663ddf1030a987bb778f8275a8e5fdef0/

Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>

---
 package/webkit/Config.in |  4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

Comments

Peter Korsgaard Feb. 23, 2014, 3:33 p.m. UTC | #1
>>>>> "Thomas" == Thomas De Schampheleire <patrickdepinguin@gmail.com> writes:

 > webkit does not build correctly on powerpc. There is an upstream bug report
 > with a partial fix, but with remaining problems.
 > https://bugs.webkit.org/show_bug.cgi?id=113638

 > Until this problem is fixed, we disable webkit on powerpc.

 > Fixes
 > http://autobuild.buildroot.org/results/3ce/3ce992a663ddf1030a987bb778f8275a8e5fdef0/

 > Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>

Committed, thanks.

What about the webkit copies in qt4/5? Do they work on powerpc?
Thomas De Schampheleire Feb. 23, 2014, 4:08 p.m. UTC | #2
Hi Peter,

On Sun, Feb 23, 2014 at 4:33 PM, Peter Korsgaard <jacmet@uclibc.org> wrote:
>>>>>> "Thomas" == Thomas De Schampheleire <patrickdepinguin@gmail.com> writes:
>
>  > webkit does not build correctly on powerpc. There is an upstream bug report
>  > with a partial fix, but with remaining problems.
>  > https://bugs.webkit.org/show_bug.cgi?id=113638
>
>  > Until this problem is fixed, we disable webkit on powerpc.
>
>  > Fixes
>  > http://autobuild.buildroot.org/results/3ce/3ce992a663ddf1030a987bb778f8275a8e5fdef0/
>
>  > Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
>
> Committed, thanks.

Thanks!

>
> What about the webkit copies in qt4/5? Do they work on powerpc?

I have no idea, I haven't seen it fail in the autobuilds yet, but I
haven't really checked either...

Best regards,
Thomas
Thomas De Schampheleire Feb. 23, 2014, 6:01 p.m. UTC | #3
On Sun, Feb 23, 2014 at 4:33 PM, Peter Korsgaard <jacmet@uclibc.org> wrote:
>>>>>> "Thomas" == Thomas De Schampheleire <patrickdepinguin@gmail.com> writes:
>
>  > webkit does not build correctly on powerpc. There is an upstream bug report
>  > with a partial fix, but with remaining problems.
>  > https://bugs.webkit.org/show_bug.cgi?id=113638
>
>  > Until this problem is fixed, we disable webkit on powerpc.
>
>  > Fixes
>  > http://autobuild.buildroot.org/results/3ce/3ce992a663ddf1030a987bb778f8275a8e5fdef0/
>
>  > Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
>
> Committed, thanks.
>
> What about the webkit copies in qt4/5? Do they work on powerpc?

Following defconfig builds just fine:

BR2_powerpc=y
BR2_DL_DIR="/home/tdescham/repo/contrib/dl"
BR2_BACKUP_SITE="http://sources.buildroot.net/"
BR2_KERNEL_MIRROR="http://www.kernel.org/pub/"
BR2_CCACHE=y
BR2_TOOLCHAIN_EXTERNAL=y
BR2_PACKAGE_QT=y
# BR2_PACKAGE_QT_XML is not set
BR2_PACKAGE_QT_WEBKIT=y

Best regards,
Thomas
Peter Korsgaard Feb. 23, 2014, 6:35 p.m. UTC | #4
>>>>> "Thomas" == Thomas De Schampheleire <patrickdepinguin@gmail.com> writes:

 >> What about the webkit copies in qt4/5? Do they work on powerpc?

 > Following defconfig builds just fine:

 > BR2_powerpc=y
 > BR2_DL_DIR="/home/tdescham/repo/contrib/dl"
 > BR2_BACKUP_SITE="http://sources.buildroot.net/"
 > BR2_KERNEL_MIRROR="http://www.kernel.org/pub/"
 > BR2_CCACHE=y
 > BR2_TOOLCHAIN_EXTERNAL=y
 > BR2_PACKAGE_QT=y
 > # BR2_PACKAGE_QT_XML is not set
 > BR2_PACKAGE_QT_WEBKIT=y

Ok, thanks for checking.
diff mbox

Patch

diff --git a/package/webkit/Config.in b/package/webkit/Config.in
--- a/package/webkit/Config.in
+++ b/package/webkit/Config.in
@@ -4,7 +4,9 @@  config BR2_PACKAGE_WEBKIT_ARCH_SUPPORTS
 	default y if (BR2_arm || BR2_armeb) && \
 		!(BR2_arm7tdmi || BR2_arm720t || BR2_arm920t || BR2_arm922t || BR2_fa526)
 	default y if BR2_i386 || BR2_mips || BR2_mipsel || \
-		BR2_powerpc || BR2_sh || BR2_sparc || BR2_x86_64
+		BR2_sh || BR2_sparc || BR2_x86_64
+
+# disabled on powerpc due to bug https://bugs.webkit.org/show_bug.cgi?id=113638
 
 config BR2_PACKAGE_WEBKIT
 	bool "webkit"