问题描述
尝试使用Microsoft Office教程中的Visual Studio RC 2017创建我的第一个C ++应用程序。
After trying to create my first C++ app, with Visual Studio RC 2017 from microsoft tutorials.
当我尝试构建或调试我的时,我收到以下错误应用程序:
I'm getting the following error when I try to build or debug my application :
严重性 代码
说明 项目
文件 行
抑制状态
错误 MSB6006
" CL.exe"退出时使用代码-1073741515。
Win32Project1 C:\Program Files( x86)\ Microsoft Visual Studio \\\ 2017 \ Communmunity \ Common7 \IDE \VC \ VCTargets\Microsoft.CppCommon.targets
253
Severity CodeDescription ProjectFile LineSuppression State
Error MSB6006 "CL.exe" exited with code -1073741515. Win32Project1 C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppCommon.targets253
我刚刚安装了Visual Studio RC 2017 ,在运行Windows 8的计算机上。
我在Visual Studio 2013上安装了旧版本的计算机。
我对如何解决此问题一无所知。
我们非常感谢任何帮助。
Any help would be much appreciated.
推荐答案
欢迎来到MSDN论坛。
Welcome to MSDN forum.
请提供微软教程的链接,我需要检查你的pr的类型oject。同时,在visual studio安装程序中选择并安装C ++ / CLI支持。
Please provide the link of microsoft tutorial, I need to check the type of your project. Meanwhile, select and install C++/CLI support in visual studio installer.
编译器崩溃-1073741515 == 0xC0000135 == STATUS_DLL_NOT_FOUND,您可以从
http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx
来诊断这个,你会看到CL.EXE进程搜索DLL但没找到它。
The compiler crashes with -1073741515 == 0xC0000135 == STATUS_DLL_NOT_FOUND, you could download Process Monitor fromhttp://technet.microsoft.com/en-us/sysinternals/bb896645.aspxto diagnose this, you'll see the CL.EXE process searching for a DLL and not finding it.
祝你好运,
Joyce
这篇关于MSB6006构建Visual Studio C ++应用程序的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!