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.

(From OE-Core rev: 94bfdb0accab0a2638e3bea1271cb80596f38e00)

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>
This commit is contained in:
Christopher Larson 2016-12-13 20:04:34 -07:00 committed by Richard Purdie
parent fb2b975326
commit 8547e44a0e
1 changed files with 2 additions and 0 deletions

View File

@ -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}
}