alias xcbuild=$(xcode-select -p)/../SharedFrameworks/XCBuild.framework/Versions/A/Support/xcbuild
# THIS DOESNT WORK YET: xcbuild openIDEConsole # … then switch to Xcode ➡️
xcbuild showSpecs
xcbuild build <foo.pif> [—target <target>]
This file contains hidden or 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 |