From: Richard Purdie Date: Mon, 14 Jul 2008 16:19:09 +0000 (+0000) Subject: tune-xscale.inc: Compile webkit-gtk for armv4t since there are massive alignment... X-Git-Tag: 2011-1~8659 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=39a81a42fd9b3220de49438b4dde30ada36eacf3;p=openembedded-core.git tune-xscale.inc: Compile webkit-gtk for armv4t since there are massive alignment issues with double word instructions with webkit on armv5 git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4833 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- diff --git a/meta/conf/machine/include/tune-xscale.inc b/meta/conf/machine/include/tune-xscale.inc index f14aee9aed..4cb0b4f7c3 100644 --- a/meta/conf/machine/include/tune-xscale.inc +++ b/meta/conf/machine/include/tune-xscale.inc @@ -3,3 +3,7 @@ FEED_ARCH = "armv5te" TARGET_CC_ARCH = "-march=armv5te -mtune=xscale" TARGET_CC_KERNEL_ARCH = "-march=armv5te -mtune=xscale" PACKAGE_ARCH = "${@['armv5teb', 'armv5te'][bb.data.getVar('SITEINFO_ENDIANESS', d, 1) == 'le']}" + +# webkit-gtk has alignment issues with double instructions on armv5 so +# disable them here +TARGET_CC_ARCH_pn-webkit-gtk = "-march=armv4t"