summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2012-10-04 10:37:05 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-11-25 21:36:43 +0000
commit1c5fb74ad7f5ec83578eecdc1180d24b840bdb1c (patch)
treed86b35997bee4b513c03087c5bd4e8b97094e96a
parent99e0053a643ca3f71eb9ddd5d03b0023851284c9 (diff)
downloadpoky-1c5fb74ad7f5ec83578eecdc1180d24b840bdb1c.tar.gz
tune-xscale: replace TUNE_CCARGS for webkit-gtk and cairo only with xscale in TUNE_FEATURES
* without this you'll get different sstate checksum for webkit-gtk and cairo even when you build them with DEFAULTTUNE == armv5te * maybe this isn't needed at all anymore or if it is then it should be applied in arm-armv5.inc for all armv5te devices, not only xscale? (From OE-Core rev: c51643a510da6d1c3426b3de8f18ae864cb073a4) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/conf/machine/include/tune-xscale.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/conf/machine/include/tune-xscale.inc b/meta/conf/machine/include/tune-xscale.inc
index 80a3683666..0d5d060d04 100644
--- a/meta/conf/machine/include/tune-xscale.inc
+++ b/meta/conf/machine/include/tune-xscale.inc
@@ -15,5 +15,5 @@ PACKAGE_EXTRA_ARCHS_tune-xscale-be = "${PACKAGE_EXTRA_ARCHS_tune-armv5teb}"
15 15
16# webkit-gtk has alignment issues with double instructions on armv5 so 16# webkit-gtk has alignment issues with double instructions on armv5 so
17# disable them here 17# disable them here
18TUNE_CCARGS_pn-webkit-gtk = "-march=armv4t" 18TUNE_CCARGS_pn-webkit-gtk = "${@bb.utils.contains("TUNE_FEATURES", "xscale", "-march=armv4t", "", d)}"
19TUNE_CCARGS_pn-cairo = "-march=armv4t" 19TUNE_CCARGS_pn-cairo = "${@bb.utils.contains("TUNE_FEATURES", "xscale", "-march=armv4t", "", d)}"