summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/x264/x264/don-t-default-to-cortex-a9-with-neon.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-multimedia/x264/x264/don-t-default-to-cortex-a9-with-neon.patch')
-rw-r--r--meta/recipes-multimedia/x264/x264/don-t-default-to-cortex-a9-with-neon.patch29
1 files changed, 21 insertions, 8 deletions
diff --git a/meta/recipes-multimedia/x264/x264/don-t-default-to-cortex-a9-with-neon.patch b/meta/recipes-multimedia/x264/x264/don-t-default-to-cortex-a9-with-neon.patch
index 73f2aac613..065e3b35b7 100644
--- a/meta/recipes-multimedia/x264/x264/don-t-default-to-cortex-a9-with-neon.patch
+++ b/meta/recipes-multimedia/x264/x264/don-t-default-to-cortex-a9-with-neon.patch
@@ -1,20 +1,33 @@
1-march flag is not in CFLAGS so this will always default to -mcpu=cortex-a8 1From a72bf499a0674fc75eedf15008b424e28f67e4bd Mon Sep 17 00:00:00 2001
2-mfpu=neon. 2From: Andrei Gherzan <andrei@gherzan.ro>
3Date: Fri, 2 Feb 2018 15:10:08 +0200
4Subject: [PATCH] dont default to cortex-a9 with neon
5
6-march flag is not in CFLAGS so this will always default to
7 -mcpu=cortex-a8 -mfpu=neon.
3 8
4Upstream-Status: Pending 9Upstream-Status: Pending
10
5Signed-off-by: Andrei Gherzan <andrei@gherzan.ro> 11Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
12Signed-off-by: Maxin B. John <maxin.john@intel.com>
13---
14 configure | 3 ---
15 1 file changed, 3 deletions(-)
6 16
7diff --git a/configure b/configure 17diff --git a/configure b/configure
8index 9d1586c..3109ec4 100755 18index 0e3ef23..955b993 100755
9--- a/configure 19--- a/configure
10+++ b/configure 20+++ b/configure
11@@ -874,9 +874,6 @@ if [ $asm = auto -a \( $ARCH = X86 -o $ARCH = X86_64 \) ] ; then 21@@ -911,9 +911,6 @@ if [ $asm = auto -a \( $ARCH = X86 -o $ARCH = X86_64 \) ] ; then
12 fi 22 fi
13 23
14 if [ $asm = auto -a $ARCH = ARM ] ; then 24 if [ $asm = auto -a $ARCH = ARM ] ; then
15- # set flags so neon is built by default 25- # set flags so neon is built by default
16- echo $CFLAGS | grep -Eq '(-mcpu|-march|-mfpu)' || CFLAGS="$CFLAGS -mcpu=cortex-a8 -mfpu=neon" 26- [ $compiler == CL ] || echo $CFLAGS | grep -Eq '(-mcpu|-march|-mfpu)' || CFLAGS="$CFLAGS -mcpu=cortex-a8 -mfpu=neon"
17- 27-
18 if cc_check '' '' '__asm__("rev ip, ip");' ; then define HAVE_ARMV6 28 cc_check '' '' '__asm__("add r0, r1, r2");' && define HAVE_ARM_INLINE_ASM
19 cc_check '' '' '__asm__("movt r0, #0");' && define HAVE_ARMV6T2 29 if [ $compiler = CL ] && cpp_check '' '' 'defined(_M_ARM) && _M_ARM >= 7' ; then
20 cc_check '' '' '__asm__("vadd.i16 q0, q0, q0");' && define HAVE_NEON 30 define HAVE_ARMV6
31--
322.4.0
33