You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-10Lines changed: 11 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,8 +17,8 @@ Swift is constantly improving ❤️. For the time being, though, long compile t
17
17
-[Modularization](#modularization)
18
18
-[XIBs](#xibs)
19
19
-[Xcode Schemes](#xcode-schemes)
20
-
-[Showing build times in Xcode](#showing-build-times-in-xcode)
21
20
-[Use the new Xcode build system](#use-the-new-xcode-build-system)
21
+
-[Showing build times in Xcode](#showing-build-times-in-xcode)
22
22
23
23
# Type checking of functions and expressions
24
24
@@ -201,6 +201,16 @@ Builds the app and all test targets. Runs all tests. Useful when working on code
201
201
202
202
-[All About Schemes](http://pilky.me/17/)
203
203
204
+
205
+
# Use the new Xcode build system
206
+
In Xcode 9 Apple [quietly introduced a new build system](https://developer.apple.com/library/content/releasenotes/DeveloperTools/RN-Xcode/Chapters/Introduction.html#//apple_ref/doc/uid/TP40001051-CH1-SW878). This is a “preview” and is not enabled by default.
207
+
It can be significantly faster than the default build system.
208
+
To enable it, go to Workspace or Project Settings from the File menu in Xcode. There you can switch build systems to the new build system preview.
209
+
210
+
📖 Sources:
211
+
212
+
-[Faster Swift Builds with the New Xcode Build System](https://github.com/quellish/XcodeNewBuildSystem)
213
+
204
214
# Showing build times in Xcode
205
215
Finally, to be able to actually know whether your build times are improving, you should enable showing them in Xcode’s UI. To do that, run this from the command line:
206
216
@@ -227,12 +237,3 @@ $ time xcodebuild other params
227
237
📖 Sources:
228
238
229
239
-[How to enable build timing in Xcode? - Stack Overflow](https://stackoverflow.com/a/2801156/1990236)
230
-
231
-
# Use the new Xcode build system
232
-
In Xcode 9 Apple [quietly introduced a new build system](https://developer.apple.com/library/content/releasenotes/DeveloperTools/RN-Xcode/Chapters/Introduction.html#//apple_ref/doc/uid/TP40001051-CH1-SW878). This is a “preview” and is not enabled by default.
233
-
It can be significantly faster than the default build system.
234
-
To enable it, go to Workspace or Project Settings from the File menu in Xcode. There you can switch build systems to the new build system preview.
235
-
236
-
📖 Sources:
237
-
238
-
-[Faster Swift Builds with the New Xcode Build System](https://github.com/quellish/XcodeNewBuildSystem)
0 commit comments