From 468f55bde795b3a58a918347b7ae4d029f8bd560 Mon Sep 17 00:00:00 2001 From: Abhishek Amit Date: Tue, 1 Aug 2017 14:02:28 -0700 Subject: [PATCH] Fix android-cpu flag reference (#3943) --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4a14cc0ea..5a0b7568c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -86,7 +86,7 @@ Run the following steps, from the `src` directory created in the steps above: * `git pull upstream master` in `src/flutter` to update the Flutter Engine repo. * `gclient sync` to update your dependencies. -* `./flutter/tools/gn --android --unoptimized` to prepare your build files (or `--android --android_cpu [x86|x64] --unoptimized` for x86/x64 emulators) . +* `./flutter/tools/gn --android --unoptimized` to prepare your build files (or `--android --android-cpu [x86|x64] --unoptimized` for x86/x64 emulators) . * `ninja -C out/android_debug_unopt` to actually build the Android binary (or `out/android_debug_unopt_x64 for x86/x64 emulators). This builds a debug-enabled ("unoptimized") binary configured to run Dart in -- GitLab