diff options
author | Bruno Randolf <br1@einfach.org> | 2014-10-14 10:14:14 +0100 |
---|---|---|
committer | Bruno Randolf <br1@einfach.org> | 2014-10-14 10:17:11 +0100 |
commit | e652eb6243ce3f7aeded43a85ed37c3cf69bdd93 (patch) | |
tree | c7c0dd5514107495045d8c2921d9318cb918132c /multimedia | |
parent | 821923b0df526a69ea484cf7c811e2ef27d3de83 (diff) |
ffmpeg: Disable mips32r2 for mips32 CPUs
Some CPUs, such as the au1500 are MIPS32 but not MIPS32r2 and we have to
explicitly disable mips32r2 in the ffmpeg configure script.
Signed-off-by: Bruno Randolf <br1@einfach.org>
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/ffmpeg/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/multimedia/ffmpeg/Makefile b/multimedia/ffmpeg/Makefile index f3c047dd4..2470ad256 100644 --- a/multimedia/ffmpeg/Makefile +++ b/multimedia/ffmpeg/Makefile @@ -399,6 +399,10 @@ FFMPEG_CONFIGURE:= \ --disable-vdpau \ --disable-outdevs +ifeq ($(CONFIG_CPU_TYPE),"mips32") + FFMPEG_CONFIGURE +=--disable-mips32r2 +endif + ifeq ($(BUILD_VARIANT),custom) FFMPEG_ENABLE= \ |