You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
979 B

  1. From a72bf499a0674fc75eedf15008b424e28f67e4bd Mon Sep 17 00:00:00 2001
  2. From: Andrei Gherzan <andrei@gherzan.ro>
  3. Date: Fri, 2 Feb 2018 15:10:08 +0200
  4. Subject: [PATCH] dont default to cortex-a9 with neon
  5. -march flag is not in CFLAGS so this will always default to
  6. -mcpu=cortex-a8 -mfpu=neon.
  7. Upstream-Status: Pending
  8. Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
  9. Signed-off-by: Maxin B. John <maxin.john@intel.com>
  10. ---
  11. configure | 3 ---
  12. 1 file changed, 3 deletions(-)
  13. --- a/configure
  14. +++ b/configure
  15. @@ -975,9 +975,6 @@ if [ $asm = auto -a \( $ARCH = X86 -o $A
  16. fi
  17. if [ $asm = auto -a $ARCH = ARM ] ; then
  18. - # set flags so neon is built by default
  19. - [ $compiler == CL ] || echo $CFLAGS | grep -Eq '(-mcpu|-march|-mfpu)' || CFLAGS="$CFLAGS -mcpu=cortex-a8 -mfpu=neon"
  20. -
  21. cc_check '' '' '__asm__("add r0, r1, r2");' && define HAVE_ARM_INLINE_ASM
  22. if [ $compiler = CL ] && cpp_check '' '' 'defined(_M_ARM) && _M_ARM >= 7' ; then
  23. define HAVE_ARMV6