summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia
diff options
context:
space:
mode:
authorChristopher Larson <chris_larson@mentor.com>2016-12-13 20:04:00 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-01-09 13:39:12 +0000
commitfb2b9753268bf42e05a252124c9a02b7a24c2cb0 (patch)
treec17f3047892b9a0885e239c085ae40e102ef76db /meta/recipes-multimedia
parent550052f9d8a3e2e291d4b22548bb860aa3ff30b3 (diff)
downloadpoky-fb2b9753268bf42e05a252124c9a02b7a24c2cb0.tar.gz
gstreamer1.0-libav: disable asm for x32
The included libav lacks support for x32, so disable the assembly optimizations. (From OE-Core rev: 7bac614503d0d9fda03b087501690e5f8262d966) Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia')
-rw-r--r--meta/recipes-multimedia/gstreamer/gstreamer1.0-libav.inc4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav.inc b/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav.inc
index ea011637c2..c2283061cc 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav.inc
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav.inc
@@ -30,6 +30,10 @@ LIBAV_EXTRA_CONFIGURE_COMMON_ARG = "--target-os=linux \
30 ${GSTREAMER_1_0_DEBUG} \ 30 ${GSTREAMER_1_0_DEBUG} \
31 --cross-prefix='${HOST_PREFIX}'" 31 --cross-prefix='${HOST_PREFIX}'"
32 32
33# Disable assembly optimizations for X32, as this libav lacks the support
34PACKAGECONFIG_remove_linux-gnux32 = "yasm"
35LIBAV_EXTRA_CONFIGURE_COMMON_ARG_append_linux-gnux32 = " --disable-asm"
36
33LIBAV_EXTRA_CONFIGURE_COMMON = \ 37LIBAV_EXTRA_CONFIGURE_COMMON = \
34'${LIBAV_EXTRA_CONFIGURE}="${LIBAV_EXTRA_CONFIGURE_COMMON_ARG}"' 38'${LIBAV_EXTRA_CONFIGURE}="${LIBAV_EXTRA_CONFIGURE_COMMON_ARG}"'
35 39