How do I get the assembler output from a C file in VS2005

前端 未结 3 930
死守一世寂寞
死守一世寂寞 2020-12-04 01:38

I think the file that is produced is an .asm file, any idea how to produce this in Visual Studio when you do a build?

3条回答
  •  情深已故
    2020-12-04 02:19

    Or if using the Visual Studio command line,

    cl.exe /Fa[assembler code filename]

    If you just want to view the assembler code in the IDE you can start the debugger and then select the Go To Dissassembly choice on the right click menu.

提交回复
热议问题