From a962edcc28d878397cbcc6c2169e044772aecc0d Mon Sep 17 00:00:00 2001 From: Zachary Anderson Date: Fri, 3 Nov 2017 08:53:42 -0700 Subject: [PATCH] Fix comment in last commit (flutter/engine#4315) --- engine/src/flutter/tools/gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/src/flutter/tools/gn b/engine/src/flutter/tools/gn index 008d20cd8d4..6616060e952 100755 --- a/engine/src/flutter/tools/gn +++ b/engine/src/flutter/tools/gn @@ -132,7 +132,7 @@ def to_gn_args(args): if 'target_cpu' in gn_args: gn_args['target_cpu'] = cpu_for_target_arch(gn_args['target_cpu']) - # Modify host_toolchain into dart_host_toolchain so it matches word size of target_cpu + # Make sure host_cpu matches the bit width of target_cpu. target_is_32_bit = gn_args['target_cpu'] == 'arm' or gn_args['target_cpu'] == 'x86' if target_is_32_bit: gn_args["host_cpu"] = "x86"