how to modify the number of parallel compilation with Xcode
build, c++, parallel-processing, xcode
Solution
Adjust the `PBXNumberOfParallelBuildSubtasks` user default, for example:
defaults write com.apple.XCode PBXNumberOfParallelBuildSubtasks 6
Problem
How to change the number of parallel compilations when building a C++ project with XCode ? I am not talking about distributed builds, but on simultaneous compilations of a set of source files from a single project, on a single computer. (currently using Xcode 3.2.4) Thanks