1

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

Is there a way to display assembly code generated from a translation unit in C/C++ in MS Visual Studio? I mean the same effect as gcc/g++ -S command in Linux. I know the "Show dissassembly" Menu but it's active only while debugging and it shows the assembler code of the whole project.

Community
  • 1
  • 1
mrn
  • 959
  • 5
  • 15

1 Answers1

2

Look in Configuration Properties -> C/C++ -> Output Files -> Assembler Output.

Mark Stevens
  • 2,366
  • 14
  • 9