我正在尝试使用Visual Studion 2010学习x64程序集。
我正在关注此视频教程:x64 Assembly and C++ Tutorial 1: Getting into x64 ASM from C++
正如它所说,我安装了Visual Studio 2010,Windows 7 SDK 3.5(ISO安装)并编辑了配置。
但是当我编译代码时,我得到以下错误:
C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\BuildCustomizations\masm.targets(49,5): error MSB3721: The command "ml64.exe /c /nologo /Zi /Fo"x64\Debug\asm.obj" /W3 /errorReport:prompt /Taasm.asm" exited with code 1.
这是什么问题,我该如何解决?
答案 0 :(得分:0)
查看该行上方的汇编器输出,或单独构建.asm文件。
您应该看到汇编程序生成的警告 例如。 “somefile.asm(564):警告A6004:过程参数或本地未引用:”
处理这些警告。 “退出代码1”不是很清楚。