diff options
-rw-r--r-- | meta/recipes-graphics/xorg-lib/pixman_0.32.8.bb | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/meta/recipes-graphics/xorg-lib/pixman_0.32.8.bb b/meta/recipes-graphics/xorg-lib/pixman_0.32.8.bb index e13b9adffb..16e68fc071 100644 --- a/meta/recipes-graphics/xorg-lib/pixman_0.32.8.bb +++ b/meta/recipes-graphics/xorg-lib/pixman_0.32.8.bb | |||
@@ -19,13 +19,12 @@ PE = "1" | |||
19 | 19 | ||
20 | IWMMXT = "--disable-arm-iwmmxt" | 20 | IWMMXT = "--disable-arm-iwmmxt" |
21 | LOONGSON_MMI = "--disable-loongson-mmi" | 21 | LOONGSON_MMI = "--disable-loongson-mmi" |
22 | NEON = " --disable-arm-neon " | 22 | # If target supports neon then disable the 'simd' (ie VFPv2) fallback, otherwise disable neon. |
23 | NEON_class-nativesdk = " --disable-arm-neon " | 23 | NEON = "${@bb.utils.contains("TUNE_FEATURES", "neon", "--disable-arm-simd", "--disable-arm-neon" ,d)}" |
24 | NEON_armv7a = " " | ||
25 | NEON_armv7a-vfp-neon = " " | ||
26 | 24 | ||
27 | EXTRA_OECONF = "--disable-gtk ${IWMMXT} ${LOONGSON_MMI} ${NEON}" | 25 | EXTRA_OECONF = "--disable-gtk ${IWMMXT} ${LOONGSON_MMI} ${NEON}" |
28 | EXTRA_OECONF_class-native = "--disable-gtk" | 26 | EXTRA_OECONF_class-native = "--disable-gtk" |
27 | EXTRA_OECONF_class-nativesdk = "--disable-gtk" | ||
29 | 28 | ||
30 | SRC_URI += "\ | 29 | SRC_URI += "\ |
31 | file://0001-ARM-qemu-related-workarounds-in-cpu-features-detecti.patch \ | 30 | file://0001-ARM-qemu-related-workarounds-in-cpu-features-detecti.patch \ |