configure: include required NEON build flags.

It is required to use "-mfpu=neon" to build NEON.

Patch-by: Albin Tonnerre <lutin@debian.org>
This commit is contained in:
Gustavo Sverzut Barbieri 2014-01-20 12:15:56 -02:00
parent 4432cd2e8e
commit f0aac1b490
1 changed files with 3 additions and 0 deletions

View File

@ -510,6 +510,8 @@ case $host_cpu in
arm*)
build_cpu_neon="yes"
AC_MSG_CHECKING([whether to use NEON instructions])
CFLAGS_save="${CFLAGS}"
CFLAGS="${CFLAGS} -mfpu=neon"
AC_TRY_COMPILE([#include <arm_neon.h>],
[asm volatile ("vqadd.u8 d0, d1, d0\n")],
[
@ -521,6 +523,7 @@ case $host_cpu in
AC_MSG_RESULT([no])
build_cpu_neon="no"
])
CFLAGS="${CFLAGS_save}"
;;
esac