Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Unified Diff: configure.ac

Issue 1645673002: only build dump_syms_mac for x86 hosts (Closed) Base URL: https://chromium.googlesource.com/breakpad/breakpad.git@master
Patch Set: regen configure Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « configure ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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]
« no previous file with comments | « configure ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698