@@ -136,18 +136,18 @@ xcode-select points at wrong SDK location
136136~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
137137
138138xcode-select is a tool that comes with Xcode and among other things points at iOS SDKs on your Mac.
139- If you have Xcode installed, opened it, agreed to the license agreement, and installed the command line tools,
140- xcode-select should point at the right location for the iPhone SDK.
139+ If you have Xcode installed, opened it, agreed to the license agreement, and installed the command line tools,
140+ xcode-select should point at the right location for the iPhone SDK.
141141If it somehow doesn't, Godot will fail exporting to iOS with an error that may look like this:
142142
143143::
144144
145145 MSB3073: The command ""clang" <LOTS OF PATHS AND COMMAND LINE ARGUMENTS HERE>
146146 "/Library/Developer/CommandLineTools/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk"" exited with code 1.
147147
148- In this case, Godot is trying to find the ``Platforms `` folder containing the iPhone SDK inside the
149- ``/Library/Developer/CommandLineTools/ `` folder, but the ``Platforms `` folder with the iPhone SDK is
150- actually located under ``/Applications/Xcode.app/Contents/Developer ``. To verify this, you can open
148+ In this case, Godot is trying to find the ``Platforms `` folder containing the iPhone SDK inside the
149+ ``/Library/Developer/CommandLineTools/ `` folder, but the ``Platforms `` folder with the iPhone SDK is
150+ actually located under ``/Applications/Xcode.app/Contents/Developer ``. To verify this, you can open
151151up Terminal and run the following command to see what xcode-select points at:
152152
153153::
@@ -161,3 +161,9 @@ To fix xcode-select pointing at a wrong location, enter this command in Terminal
161161 sudo xcode-select -switch /Applications/Xcode.app
162162
163163After running this command, Godot should be able to successfully export to iOS.
164+
165+ Export options
166+ --------------
167+
168+ You can find a full list of export options available in the
169+ :ref: `class_EditorExportPlatformIOS ` class reference.
0 commit comments