aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Dave MacLachlan <dmaclach@google.com>2016-12-06 21:44:03 +0000
committerGravatar Laszlo Csomor <laszlocsomor@google.com>2016-12-07 12:49:38 +0000
commit0c7a5d88015086b378bf2edd77f1c63040c73145 (patch)
tree7850ef16005b6fdddaca03d8e1a77da8c0c38b45
parent95f9b8129d1b877523359ca26539cb254ae5a8d7 (diff)
Update docs to simplify the specification of Xcode/SDK versioning.
-- PiperOrigin-RevId: 141220359 MOS_MIGRATED_REVID=141220359
-rw-r--r--site/versions/master/docs/tutorial/ios-app.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/site/versions/master/docs/tutorial/ios-app.md b/site/versions/master/docs/tutorial/ios-app.md
index 51774e9312..7e2f651698 100644
--- a/site/versions/master/docs/tutorial/ios-app.md
+++ b/site/versions/master/docs/tutorial/ios-app.md
@@ -182,9 +182,10 @@ $ bazel build //ios-app:ios-app --ios_multi_cpus=armv7,arm64
This will build the app "fat". If you would prefer just to build for
your specific device architecture you can designate a single architecture.
-If you would like to select a specific Xcode version/SDK version you can do so
-with the `--xcode_version=7.2 --ios_sdk_version=9.2` options. Make sure that
-the Xcode version that you select has the appropriate SDK installed in it.
+If you would like to select a specific Xcode version you can do so
+with the `--xcode_version=7.2` option. If for some reason you need to specify
+a specific SDK version you can use the `--ios_sdk_version=9.2` option, but the
+`--xcode_version` should be sufficient in most circumstances.
If you would like to specify a minimum version of iOS to run against, you can
do so with the `--ios_minimum_os=7.0` option.