From c6f89cbf9c2d163cb07e640e6b13002e5c98cb61 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Thu, 18 Jun 2020 14:27:00 -0700 Subject: [PATCH] Complain if we can't enable simd on non-x86_64. --- configure.ac | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure.ac b/configure.ac index a590af44..a65b289d 100644 --- a/configure.ac +++ b/configure.ac @@ -230,6 +230,10 @@ if test x"$enable_simd" = x"yes"; then Omit --enable-simd to continue without it. ($CXX, $CXX_VERSION)]) fi fi + else + AC_MSG_RESULT(unavailable) + AC_MSG_ERROR(The SIMD optimizations are currently x86_64 only. +Omit --enable-simd to continue.) fi fi -- 2.47.2