I need to watch over the assembly code that vc generated.
Is it possible to debug vc release program with source code in other debugger, such as ollydbg, windbg?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, debuggers like ollydbg or windbg can debug\disassemble\launch every kind of native executables (PE as well), no matter which compiler and which language has been used.
The only problem is that you won’t have much debug symbols and it’ll be pretty hard to know where you are and what you are doing.
If a pdb is available, use it : http://en.wikipedia.org/wiki/Program_database.