How do I turn on multi-CPU/Core C++ compiles in the Visual Studio IDE (2008)?(如何在 Visual Studio IDE (2008) 中打开多 CPU/核心 C++ 编译?)
问题描述
我有一个 Visual Studio 2008 C++ 项目,它支持在编译时使用多个 CPU/内核.在 VCPROJ 文件中,我看到:
<工具名称="VCCLCompilerTool"附加选项=/MP"...
我找不到通过 IDE 添加的位置,我想设置另一个在编译期间使用我所有内核的项目.
我发现对
I have a Visual Studio 2008 C++ project that has support for using multiple CPUs/cores when compiling. In the VCPROJ file I see this:
<Tool
Name="VCCLCompilerTool"
AdditionalOptions="/MP"
...
I can't find where that was turned added via the IDE and I want to set up another project that uses all of my cores during compilation.
I found tons of references to the MSDN /MP page but that is for using the command line; I have yet to find any references to setting that with the IDE. How do I do that?
EDIT: To clarify, the two projects are completely separate and are not in the same VCPROJ file. I wanted to turn on support for multiple cores during the C++ compilation phase.
To enable /MP option you could add it to Project Settings->C/C++->Command Line|Additional options
. This is the only way to switch it on in vcproj.
这篇关于如何在 Visual Studio IDE (2008) 中打开多 CPU/核心 C++ 编译?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Visual Studio IDE (2008) 中打开多 CPU/核心 C++ 编译?


基础教程推荐
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 我有静态或动态 boost 库吗? 2021-01-01
- 这个宏可以转换成函数吗? 2022-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 常量变量在标题中不起作用 2021-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01