summaryrefslogtreecommitdiff
path: root/package/x264
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2014-10-21 22:27:04 +0200
committerPeter Korsgaard <peter@korsgaard.com>2014-11-06 23:54:50 +0100
commitfe417778514594f1acb526b2842ba103961e45bb (patch)
tree451bd4dbba543b3f39d7f3554c0f3b8d79ef7b18 /package/x264
parent56ea6a1391878c5e9e4b49efe147d7c9ee559200 (diff)
x264: use the BR2_ARM_CPU_ARMV7A option
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/x264')
-rw-r--r--package/x264/x264.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/x264/x264.mk b/package/x264/x264.mk
index ac8fe948a..1846f04b3 100644
--- a/package/x264/x264.mk
+++ b/package/x264/x264.mk
@@ -14,7 +14,7 @@ X264_INSTALL_STAGING = YES
ifeq ($(BR2_i386)$(BR2_x86_64),y)
X264_DEPENDENCIES += host-yasm
-else ifeq ($(BR2_cortex_a5)$(BR2_cortex_a7)$(BR2_cortex_a8)$(BR2_cortex_a9)$(BR2_cortex_a12)$(BR2_cortex_a15),y)
+else ifeq ($(BR2_ARM_CPU_ARMV7A),y)
# We need to pass gcc as AS, because the ARM assembly files have to be
# preprocessed
X264_CONF_ENV += AS="$(TARGET_CC)"