aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMemphiz <memphis@machzwo.de>2015-12-21 10:06:04 +0100
committerMemphiz <memphis@machzwo.de>2016-01-06 15:52:05 +0100
commit58047421a325f4fe756708246dbe77944512bc21 (patch)
tree2e8265e58c7452ac68c06b61df37a56143684fcc
parent0c400705ef048631438c1df7480c87cb02a326ad (diff)
[depends/ffmpeg] - add compile support for ios/arm64
-rw-r--r--tools/depends/target/ffmpeg/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/depends/target/ffmpeg/Makefile b/tools/depends/target/ffmpeg/Makefile
index 8db11fc01c..b453f3d7fe 100644
--- a/tools/depends/target/ffmpeg/Makefile
+++ b/tools/depends/target/ffmpeg/Makefile
@@ -39,8 +39,11 @@ ifeq ($(OS), android)
ffmpg_config += --target-os=linux
endif
ifeq ($(OS), ios)
- ffmpg_config += --cpu=cortex-a8 --yasmexe=$(NATIVEPREFIX)/bin/yasm
- ffmpg_config += --disable-decoder=mpeg_xvmc --enable-vda --disable-crystalhd
+ ifneq ($(CPU), arm64)
+ ffmpg_config += --cpu=cortex-a8
+ endif
+ ffmpg_config += --yasmexe=$(NATIVEPREFIX)/bin/yasm
+ ffmpg_config += --disable-decoder=mpeg_xvmc --disable-vda --disable-crystalhd
ffmpg_config += --target-os=darwin
endif
ifeq ($(OS), osx)