From 9002a0d20681e3a184110dcb2edfbcc4f07e2a61 Mon Sep 17 00:00:00 2001 From: Chinmay Garde Date: Tue, 18 Aug 2015 14:38:50 -0700 Subject: [PATCH] Set default active arch on iOS to armv7 --- build/config/compiler/BUILD.gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn index c920299f645..c90850642fa 100644 --- a/build/config/compiler/BUILD.gn +++ b/build/config/compiler/BUILD.gn @@ -67,7 +67,7 @@ declare_args() { # depending on the application type, may be unnecessary. If the type of # architecture is known beforehand, setting that as the active arch will # greatly reduce build times and reduce binary sizes. - ios_active_arch = "" + ios_active_arch = "armv7" } # default_include_dirs ---------------------------------------------------------