From a6986caa7ee2049b79a5b6a56925a282a31defdd 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 --- engine/src/flutter/build/config/compiler/BUILD.gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/src/flutter/build/config/compiler/BUILD.gn b/engine/src/flutter/build/config/compiler/BUILD.gn index c920299f645..c90850642fa 100644 --- a/engine/src/flutter/build/config/compiler/BUILD.gn +++ b/engine/src/flutter/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 ---------------------------------------------------------