Last active
September 28, 2023 17:03
-
-
Save ddunbar/0a606e9036aaea552ec9cb21548bc618 to your computer and use it in GitHub Desktop.
Xcode user defaults
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Enable timings on build operations | |
defaults write com.apple.dt.Xcode ShowBuildOperationDuration -bool YES | |
# Enable extensive per-task timings | |
defaults write com.apple.dt.Xcode IDEBuildOperationTimingLogLevel -int 3 | |
# Enable old build system logging for "implicit dependencies" | |
defaults write com.apple.dt.Xcode IDEBuildOperationDependenciesLogLevel -int 3 | |
# Show logs from the "prebuild" step | |
defaults write com.apple.dt.Xcode IDEShowPrebuildLogs -bool YES | |
# or... | |
xcodebuild ... -IDEBuildOperationTimingLogLevel=3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment