summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2011-10-06 17:56:09 -0400
committerMatt Turner <mattst88@gmail.com>2011-10-06 17:56:09 -0400
commit741eb8462c3ff72cbf2d9acfeb1e97208a414fcd (patch)
tree4f578929a048432e8c910572f0e78bfde18188fd
parent0a34277180d29f471a2554afc2e2b682fee33c79 (diff)
Correct the minimum gcc version needed for iwmmxt
Spotted by Søren Sandmann. Signed-off-by: Matt Turner <mattst88@gmail.com>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 471a127..6f5aef5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -555,7 +555,7 @@ AC_COMPILE_IFELSE([
#ifndef __arm__
#error "IWMMXT is only available on ARM"
#endif
-#if defined(__GNUC__) && (__GNUC__ < 4 || (__GNUC__ == 3 && __GNUC_MINOR__ < 6))
+#if defined(__GNUC__) && (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 6))
#error "Need GCC >= 4.6 for IWMMXT intrinsics"
#endif
#include <mmintrin.h>