Created
November 4, 2016 21:29
-
-
Save zvaavtre/e63cafb6c6c3a68b14be7bb86c12077f to your computer and use it in GitHub Desktop.
IDEBuildOperationMaxNumberOfConcurrentCompileTask
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
#!/bin/bash | |
# | |
# Look, you are not supoposed to do this. But dang it, it speeds up recompiles by a lot. | |
# | |
echo "job count is: " `defaults read com.apple.dt.Xcode IDEBuildOperationMaxNumberOfConcurrentCompileTask` | |
echo "Changing to: $1" | |
defaults write com.apple.dt.Xcode IDEBuildOperationMaxNumberOfConcurrentCompileTask $1 | |
echo "job count is now: " `defaults read com.apple.dt.Xcode IDEBuildOperationMaxNumberOfConcurrentCompileTask` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment