From 94bfdb0accab0a2638e3bea1271cb80596f38e00 Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Tue, 13 Dec 2016 20:04:34 -0700 Subject: ffmpeg: disable asm for x32 This is the usual way this is handled in desktop distros (see debian, gentoo). I wasn't able to track down a patch to add proper x32 support to ffmpeg. There was, however, a libav patch series which may be worth investigating. Signed-off-by: Christopher Larson Signed-off-by: Ross Burton --- meta/recipes-multimedia/ffmpeg/ffmpeg_3.2.2.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-multimedia/ffmpeg/ffmpeg_3.2.2.bb b/meta/recipes-multimedia/ffmpeg/ffmpeg_3.2.2.bb index 4fac46b117..66718c4b37 100644 --- a/meta/recipes-multimedia/ffmpeg/ffmpeg_3.2.2.bb +++ b/meta/recipes-multimedia/ffmpeg/ffmpeg_3.2.2.bb @@ -92,6 +92,8 @@ EXTRA_OECONF = " \ ${@bb.utils.contains('AVAILTUNES', 'mips32r2', '', '--disable-mipsdsp --disable-mipsdspr2', d)} \ " +EXTRA_OECONF_append_linux-gnux32 = " --disable-asm" + do_configure() { ${S}/configure ${EXTRA_OECONF} } -- cgit 1.2.3-korg