编译器警告(等级 1)C4964
未指定任何优化选项;将不会收集配置文件信息
指定了 /GL 和 /LTCG,但没有请求优化,所以将不会生成 .pgc 文件,因此,将无法进行配置文件引导的优化。
如果希望在你运行应用程序时生成 .pgc 文件,请指定 /O 编译器选项之一。
下面的示例生成 C4964:
// C4964.cpp
// compile with: /W1 /GL /link /ltcg:pgi
// C4964 expected
// Add /O2, for example, to the command line to resolve this warning.
int main() {
int i;
}