summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Greenan <kmgreen2@gmail.com>2013-12-05 08:35:18 -0800
committerKevin Greenan <kmgreen2@gmail.com>2013-12-05 08:35:18 -0800
commit87bb2604175e7471e05394782d2edb6fd05b4fa5 (patch)
tree4eaeb90dd66fccb24d2184c7d9bed9b527d824b9
parent639c106d23ea155c3498aaade127b3583a94cc6c (diff)
downloadgf-complete-87bb2604175e7471e05394782d2edb6fd05b4fa5.tar.gz
Adding flag for SSSE3. Must have missed it when I updated the ax_ext() macro.
-rwxr-xr-xconfigure2
-rw-r--r--m4/ax_ext.m42
2 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 01556e0..2640c92 100755
--- a/configure
+++ b/configure
@@ -12186,7 +12186,7 @@ else
fi
if test x"$ax_cv_support_ssse3_ext" = x"yes"; then
- SIMD_FLAGS="$SIMD_FLAGS -mssse3"
+ SIMD_FLAGS="$SIMD_FLAGS -mssse3 -DINTEL_SSSE3"
$as_echo "#define HAVE_SSSE3 /**/" >>confdefs.h
diff --git a/m4/ax_ext.m4 b/m4/ax_ext.m4
index 1ee3b94..3283f51 100644
--- a/m4/ax_ext.m4
+++ b/m4/ax_ext.m4
@@ -201,7 +201,7 @@ AC_DEFUN([AX_EXT],
if test "$ax_cv_have_ssse3_ext" = yes; then
AX_CHECK_COMPILE_FLAG(-mssse3, ax_cv_support_ssse3_ext=yes, [])
if test x"$ax_cv_support_ssse3_ext" = x"yes"; then
- SIMD_FLAGS="$SIMD_FLAGS -mssse3"
+ SIMD_FLAGS="$SIMD_FLAGS -mssse3 -DINTEL_SSSE3"
AC_DEFINE(HAVE_SSSE3,,[Support SSSE3 (Supplemental Streaming SIMD Extensions 3) instructions])
else
AC_MSG_WARN([Your processor supports ssse3 instructions but not your compiler, can you try another compiler?])