Skip to content

Commit

Permalink
ffmpeg: Allow neon to be enabled in unified builds
Browse files Browse the repository at this point in the history
  • Loading branch information
popcornmix committed Jun 30, 2015
1 parent 3cb9583 commit f5d0c05
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tools/depends/target/ffmpeg/Makefile
Expand Up @@ -26,7 +26,11 @@ ffmpg_config += --enable-encoder=wmav2 --enable-protocol=http
ffmpg_config += --enable-gnutls

ifeq ($(CROSS_COMPILING), yes)
ifeq ($(CPU), cortex-a7)
ffmpg_config += --arch=arm --enable-cross-compile
else
ffmpg_config += --arch=$(CPU) --enable-cross-compile
endif
endif
ifeq ($(OS), linux)
ffmpg_config += --target-os=$(OS) --cpu=$(CPU)
Expand Down

0 comments on commit f5d0c05

Please sign in to comment.