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 Answers
- Open the Properties page for a project
- Select the
Configuration Properties -> C/C++ -> Output Filesbranch - Change the Assembler Output option to something other than
No Listing - Make sure ASM List Location is set to a valid path or sub-path
- Build.
1 Comment
Anton K
Don't forget to turn off /GL option (Whole program optimization). Otherwise, asm file will not be created. It happens in the case of Release configuration.