aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-08-07 04:01:12 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-08-07 04:01:12 +0700
commit7dbae9ea40e2855729f9efa7264b5af78af779db (patch)
tree3bc22e1fd9a8fd4bfd83fe6677bae7141b3a9d9d
parentcab383580580e9d005b95bd072fb90d917af62c9 (diff)
configure.ac: print ARM NEON instructions support status
-rw-r--r--configure.ac2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index d249be96..fbdcb579 100644
--- a/configure.ac
+++ b/configure.ac
@@ -384,6 +384,8 @@ AC_ARG_ENABLE(neon,
[Enable ARM NEON instructions support [default=no]]
)],
[neon=$enableval], [neon="no"])
+AC_MSG_CHECKING([whether to enable ARM NEON instructions support])
+AC_MSG_RESULT([$neon])
AM_CONDITIONAL(HAVE_NEON, [test "x$neon" != "xno"])