how to modify the number of parallel compilation with Xcode

后端 未结 5 1311
生来不讨喜
生来不讨喜 2021-02-02 00:44

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

5条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-02 01:30

    For command line builds, I've tested the 2011/Jul mailing list post that Mimika linked, and deployed it on our (Xcode 4.2, on Snow Leopard) build server to save memory like so:

    defaults write xcodebuild IDEBuildOperationMaxNumberOfConcurrentCompileTasks 1
    

提交回复
热议问题