diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2012-09-05 03:05:37 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-10 13:01:49 +0100 |
commit | 6ce6e3eb1a48c101feb2117c6c18522fa1a722db (patch) | |
tree | f43a5f6392a3e84700b6cbee5de42043cc59d51b /meta/recipes-graphics | |
parent | d822c8f38561febfebbf6444e82dd85cc31dc493 (diff) | |
download | poky-6ce6e3eb1a48c101feb2117c6c18522fa1a722db.tar.gz |
pixman: ignore NEON, IWMMXT, LOONGSON_MMI variables for class-native
* pixman-native can have different do_configure sstate checksums if it's built with armv4t machine and armv7a
OE @ ~ $ bitbake/bin/bitbake-diffsigs
before-mgmt/stamps.1346795706/nokia900/x86_64-linux/pixman-native-*.do_configure.sigdata.*
after-mgmt/stamps.1346801508/om-gta02/x86_64-linux/pixman-native-*.do_configure.sigdata.*
basehash changed from 27e577de60880a788c7aaba797ef83e0 to c6799807eb3e767daf1e75738fc753f7
Variable NEON value changed from to --disable-arm-neon
* so if you start building with different machine then last time (wrt
NEON setting) all recipes which depends on pixman-native will be rebuilt too
* this explains why sstate-cache-management.sh wanted to remove many
native sstate packages when --stamps-dir option was used (see comment
28 in https://bugzilla.yoctoproject.org/show_bug.cgi?id=2897)
(From OE-Core rev: 0b466e6677208aeefdfa15aa37bd4681eda166c8)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r-- | meta/recipes-graphics/xorg-lib/pixman_0.27.2.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-graphics/xorg-lib/pixman_0.27.2.bb b/meta/recipes-graphics/xorg-lib/pixman_0.27.2.bb index 35a2defef6..218808a7ec 100644 --- a/meta/recipes-graphics/xorg-lib/pixman_0.27.2.bb +++ b/meta/recipes-graphics/xorg-lib/pixman_0.27.2.bb | |||
@@ -15,7 +15,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=14096c769ae0cbb5fcb94ec468be11b3 \ | |||
15 | DEPENDS += "zlib libpng" | 15 | DEPENDS += "zlib libpng" |
16 | BBCLASSEXTEND = "native" | 16 | BBCLASSEXTEND = "native" |
17 | 17 | ||
18 | PR = "r1" | 18 | PR = "r2" |
19 | 19 | ||
20 | PE = "1" | 20 | PE = "1" |
21 | 21 | ||
@@ -25,7 +25,8 @@ NEON = " --disable-arm-neon " | |||
25 | NEON_armv7a = " " | 25 | NEON_armv7a = " " |
26 | NEON_armv7a-vfp-neon = " " | 26 | NEON_armv7a-vfp-neon = " " |
27 | 27 | ||
28 | EXTRA_OECONF="--disable-gtk ${IWMMXT} ${LOONGSON_MMI} ${NEON}" | 28 | EXTRA_OECONF = "--disable-gtk ${IWMMXT} ${LOONGSON_MMI} ${NEON}" |
29 | EXTRA_OECONF_class-native = "--disable-gtk" | ||
29 | 30 | ||
30 | SRC_URI += "\ | 31 | SRC_URI += "\ |
31 | file://0001-ARM-qemu-related-workarounds-in-cpu-features-detecti.patch \ | 32 | file://0001-ARM-qemu-related-workarounds-in-cpu-features-detecti.patch \ |