Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在发布模式下查看带有 VS2010 的一行的 asm 代码?我想查看完全优化的版本,但我无法进入它(没有断点)。
有什么建议么?
项目配置 -> 配置属性 -> C/C++ -> 输出文件 -> 汇编器输出
您可以在 C++ 和链接器选项卡中启用生成调试信息以覆盖配置默认值。
然后,您可以在调试器中轻松设置断点并检查程序集,例如调试构建。单步可能会受到优化的阻碍,但这应该是可以容忍的。
或者,您可以询问 asm、code+asm 文件的输出,请参阅输出文件设置。