How can I do a parallel build in Visual Studio 2010?

前端 未结 6 1833
太阳男子
太阳男子 2020-12-23 12:18

How can I get VS 2010 to run more than one C++ compile process at a time? I mean building object modules in parallel; I\'m not interested in building more than one project a

6条回答
  •  一个人的身影
    2020-12-23 12:56

    1. Tools -> Options
    2. Projects and Solutions\VC++ Project Settings
    3. Maximum concurrent C++ compilations

    Also, as Ross Smith said in the comments, you also need to turn on the "Multiprocessor compilation" option on the project:

    1. Project properties
    2. Configuration Properties > C/C++ > General
    3. Multi-Processor Compilation
    4. Profit!

提交回复
热议问题