Add support for building the arm64 assembly in platform-arch.mk

This commit is contained in:
Martin Storsjö 2014-04-23 10:53:39 +03:00
parent 3c2e9cd7bf
commit f1b2d51d86

View File

@ -8,3 +8,10 @@ ASMFLAGS += -Icodec/common/arm/
CFLAGS += -DHAVE_NEON
endif
endif
ifneq ($(filter arm64 aarch64, $(ARCH)),)
ifeq ($(USE_ASM), Yes)
ASM_ARCH = arm64
ASMFLAGS += -Icodec/common/arm64/
CFLAGS += -DHAVE_NEON_AARCH64
endif
endif