Replacement for #import in Visual C++

前端 未结 6 1961
野的像风
野的像风 2020-12-23 21:27

We have large C++ project that we used to compile with the /MP switch to take advantage of multiple cores.

However, we recently brought in some code that uses #impor

6条回答
  •  情歌与酒
    2020-12-23 21:57

    You can use the /MP option for the project as a whole, and then make an exception for a single file using the /MP1 option.

提交回复
热议问题