From: Christopher Larson Date: Wed, 14 Dec 2016 03:04:34 +0000 (-0700) Subject: ffmpeg: disable asm for x32 X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~23115 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=94bfdb0accab0a2638e3bea1271cb80596f38e00;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 --- diff --git a/meta/recipes-multimedia/ffmpeg/ffmpeg_3.2.2.bb b/meta/recipes-multimedia/ffmpeg/ffmpeg_3.2.2.bb index 4fac46b1170..66718c4b371 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} }