Swift 1.2 Upgrade

I have updated my Swift project to version 1.2 and the build times have been improved after using the Build Setup option . Optimization of the whole module = Yes. But even if there is a small change in the Swift file, all Objective C files will compile when I tried to build. Is there any other optimization option? I am using Xcode 6.3.2

+3


source to share


1 answer


Why don't you just enable whole module optimization in release build and leave it to Debug. This way, you don't have to wait long for compilation and testing, but your users still benefit from the speed of optimizing the entire module.



0


source







All Articles