Advertisement

Intermidiate Code In VC5

Started by March 25, 2000 03:22 PM
0 comments, last by Omalacon 24 years, 8 months ago
I recently just created a whole bunch of macros, but they don''t seem to be working. I was wondering if it is possible to see the intermediate code that VC gerates after it adds in all my macros (after the preprocessor has gone through and processed code). I want to see exactly what VC is generating so I can fix the problem. I went looking in the documentation but couldn''t find a thing. -Omalacon
You can use the compiler from command line to generate pre-processed output. I believe cl /E will output the pre-processed output to stdout and cl /P file.txt will output the pre-processed output to file.txt.

This topic is closed to new replies.

Advertisement