我知道你可以使用這樣的事情每個獨立的功能的編譯時間:如何獲取命令運行所需的總時間?
xcodebuild -workspace App.xcworkspace -scheme App clean build OTHER_SWIFT_FLAGS="-Xfrontend -debug-time-function-bodies" | grep .[0-9]ms | grep -v ^0.[0-9]ms | sort -nr > culprits.txt
或本
defaults write com.apple.dt.Xcode ShowBuildOperationDuration -bool YES
,但我怎樣才能在命令行打印出來的總建造時間?