Index: configure.ac |
diff --git a/configure.ac b/configure.ac |
index 18426ae18520633829bb7a21ec9b82480d7f2e64..23195b7d3e3c1542304b46988ea9eea432cb59a3 100644 |
--- a/configure.ac |
+++ b/configure.ac |
@@ -95,6 +95,14 @@ case $host in |
esac |
AM_CONDITIONAL(ANDROID_HOST, test x$ANDROID_HOST = xtrue) |
+# Some tools (like mac ones) only support x86 currently. |
+case $host_cpu in |
+ i?86|x86_64) |
+ X86_HOST=true |
+ ;; |
+esac |
+AM_CONDITIONAL(X86_HOST, test x$X86_HOST = xtrue) |
+ |
AC_ARG_ENABLE(processor, |
AS_HELP_STRING([--disable-processor], |
[Don't build processor library] |