From the user aspect,we just click and see it run,but don’t know what exactly is undergoing.
Is there a way to see all the internal processing history like:
> gcc foo.c -o foo.exe
> foo.exe
hello world
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.
Visual Studio outputs all the commands into a temporary batch file which it then executes, and you see the results in the Output window.
Try looking in the file ‘BuildLog.htm’ in your intermediate directory.
More info here.