2014-02-25 22:48:35 +01:00
|
|
|
ifneq ($(filter %86 x86_64, $(ARCH)),)
|
2014-10-22 09:18:53 +02:00
|
|
|
include $(SRC_PATH)build/x86-common.mk
|
2014-02-25 22:48:35 +01:00
|
|
|
endif
|
2014-02-26 14:00:35 +01:00
|
|
|
ifneq ($(filter-out arm64, $(filter arm%, $(ARCH))),)
|
|
|
|
ifeq ($(USE_ASM), Yes)
|
|
|
|
ASM_ARCH = arm
|
2014-01-29 09:31:09 +01:00
|
|
|
ASMFLAGS += -I$(SRC_PATH)codec/common/arm/
|
2014-02-26 14:00:35 +01:00
|
|
|
CFLAGS += -DHAVE_NEON
|
|
|
|
endif
|
|
|
|
endif
|
2014-04-23 09:53:39 +02:00
|
|
|
ifneq ($(filter arm64 aarch64, $(ARCH)),)
|
|
|
|
ifeq ($(USE_ASM), Yes)
|
|
|
|
ASM_ARCH = arm64
|
2014-01-29 09:31:09 +01:00
|
|
|
ASMFLAGS += -I$(SRC_PATH)codec/common/arm64/
|
2014-04-23 09:53:39 +02:00
|
|
|
CFLAGS += -DHAVE_NEON_AARCH64
|
|
|
|
endif
|
|
|
|
endif
|