diff options
author | Christopher Larson <chris_larson@mentor.com> | 2016-12-13 20:04:34 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-09 13:39:12 +0000 |
commit | 8547e44a0e661e41cbef1ed80231a776060aeca9 (patch) | |
tree | 529240bc9cb80c0f38cf6092fc74c539df647d00 /meta | |
parent | fb2b9753268bf42e05a252124c9a02b7a24c2cb0 (diff) | |
download | poky-8547e44a0e661e41cbef1ed80231a776060aeca9.tar.gz |
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>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-multimedia/ffmpeg/ffmpeg_3.2.2.bb | 2 |
1 files changed, 2 insertions, 0 deletions
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 = " \ | |||
92 | ${@bb.utils.contains('AVAILTUNES', 'mips32r2', '', '--disable-mipsdsp --disable-mipsdspr2', d)} \ | 92 | ${@bb.utils.contains('AVAILTUNES', 'mips32r2', '', '--disable-mipsdsp --disable-mipsdspr2', d)} \ |
93 | " | 93 | " |
94 | 94 | ||
95 | EXTRA_OECONF_append_linux-gnux32 = " --disable-asm" | ||
96 | |||
95 | do_configure() { | 97 | do_configure() { |
96 | ${S}/configure ${EXTRA_OECONF} | 98 | ${S}/configure ${EXTRA_OECONF} |
97 | } | 99 | } |