Last active
January 27, 2025 21:18
-
-
Save nlutsenko/ee245fbd239087d22137 to your computer and use it in GitHub Desktop.
Fast Xcode builds
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
defaults write xcodebuild PBXNumberOfParallelBuildSubtasks 4 | |
defaults write xcodebuild IDEBuildOperationMaxNumberOfConcurrentCompileTasks 4 | |
defaults write com.apple.xcode PBXNumberOfParallelBuildSubtasks 4 | |
defaults write com.apple.xcode IDEBuildOperationMaxNumberOfConcurrentCompileTasks 4 |
on xcode 11 you can see what settings you already have like this:
defaults read com.apple.dt.xcodebuild
defaults read com.apple.dt.Xcode
this is what i use:
defaults write com.apple.dt.xcodebuild PBXNumberOfParallelBuildSubtasks `sysctl -n hw.ncpu`
defaults write com.apple.dt.xcodebuild IDEBuildOperationMaxNumberOfConcurrentCompileTasks `sysctl -n hw.ncpu`
defaults write com.apple.dt.Xcode PBXNumberOfParallelBuildSubtasks `sysctl -n hw.ncpu`
defaults write com.apple.dt.Xcode IDEBuildOperationMaxNumberOfConcurrentCompileTasks `sysctl -n hw.ncpu`
The above also works on Xcode 14
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
FYI it's now:
com.apple.dt.xcodebuild
com.apple.dt.Xcode