Xcode 6.3 始终完全重建 Swift 项目
Xcode 6.3 always does full rebuild of Swift project
Swift 1.2/Xcode 6.3 期待已久的功能之一是增量构建。直到最近,它们对我来说都很好,但现在几乎每次我更改哪怕一行代码,它都会完全重建。
我尝试重新启动 Xcode 计算机,清理派生数据,但无济于事。谷歌搜索似乎没有显示任何内容。
还有其他人遇到这个问题吗?我该如何解决?
我想这就是你要找的
我不是这是问题的根源。根据https://developer.apple.com
Swift Performance
A new compilation mode has been introduced for Swift called Whole Module Optimization. This option optimizes all of the files in a target together and enables better performance (at the cost of increased compile time). The new flag can be enabled in Xcode using the “Whole Module Optimization” build setting or by using the swiftc command line tool with the flag -whole-module-optimization. (18603795)
Swift 1.2/Xcode 6.3 期待已久的功能之一是增量构建。直到最近,它们对我来说都很好,但现在几乎每次我更改哪怕一行代码,它都会完全重建。
我尝试重新启动 Xcode 计算机,清理派生数据,但无济于事。谷歌搜索似乎没有显示任何内容。
还有其他人遇到这个问题吗?我该如何解决?
我想这就是你要找的
我不是这是问题的根源。根据https://developer.apple.com
Swift Performance
A new compilation mode has been introduced for Swift called Whole Module Optimization. This option optimizes all of the files in a target together and enables better performance (at the cost of increased compile time). The new flag can be enabled in Xcode using the “Whole Module Optimization” build setting or by using the swiftc command line tool with the flag -whole-module-optimization. (18603795)