Commit e3aa96b9 authored by Thomas Guillem's avatar Thomas Guillem Committed by Rémi Denis-Courmont

contrib: fix cross-compile for aarch64

Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent e8ba5754
......@@ -81,6 +81,13 @@ FFMPEGCONF += --cpu=armv6 --disable-neon
endif
endif
# ARM64 stuff
ifeq ($(ARCH),aarch64)
ifndef HAVE_DARWIN_OS
FFMPEGCONF += --arch=aarch64
endif
endif
# MIPS stuff
ifeq ($(ARCH),mipsel)
FFMPEGCONF += --arch=mips
......
......@@ -35,6 +35,11 @@ POSTPROCCONF += --enable-neon
endif
endif
# ARM64 stuff
ifeq ($(ARCH),aarch64)
POSTPROCCONF += --arch=aarch64
endif
# MIPS stuff
ifeq ($(ARCH),mipsel)
POSTPROCCONF += --arch=mips
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment