aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/user/build.md
diff options
context:
space:
mode:
Diffstat (limited to 'site/user/build.md')
-rw-r--r--site/user/build.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/site/user/build.md b/site/user/build.md
index eaf56c24f1..9d43fc2691 100644
--- a/site/user/build.md
+++ b/site/user/build.md
@@ -110,10 +110,11 @@ iOS
---
Run GN to generate your build files. Set `target_os="ios"` to build for iOS.
-This defaults to `target_cpu="arm64"`.
+This defaults to `target_cpu="arm64"`. Choosing `x64` targets the iOS simulator.
- bin/gn gen out/ios64 --args='target_os="ios"'
- bin/gn gen out/ios32 --args='target_os="ios" target_cpu="arm"'
+ bin/gn gen out/ios64 --args='target_os="ios"'
+ bin/gn gen out/ios32 --args='target_os="ios" target_cpu="arm"'
+ bin/gn gen out/iossim --args='target_os="ios" target_cpu="x64"'
Googlers who want to sign and run iOS test binaries can do so by running something like