From 90740aff3cd208d3100de50379f01dc99ce5f433 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Tue, 8 May 2012 09:22:32 +0000 Subject: Added a profiling option to the VC2008 projects, using the MS standalone profiler (see vc2008/profile_run.cmd for details and usage) git-svn-id: http://mc-server.googlecode.com/svn/trunk@482 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- VC2008/profile_run.cmd | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 VC2008/profile_run.cmd (limited to 'VC2008/profile_run.cmd') diff --git a/VC2008/profile_run.cmd b/VC2008/profile_run.cmd new file mode 100644 index 000000000..77138d20a --- /dev/null +++ b/VC2008/profile_run.cmd @@ -0,0 +1,39 @@ +@ +@ Profiling using a MSVC standalone profiler +@ +@ See http://www.codeproject.com/Articles/144643/Profiling-of-C-Applications-in-Visual-Studio-for-F for details +@ + + + + +set pt="C:\Program Files\Microsoft Visual Studio 9.0\Team Tools\Performance Tools" +set app="vc2008\Release profiled\mcserver.exe" +set output=MCServer_profiledata.vsp + + + + + +cd .. + +:: Start the profiler +%pt%\vsperfcmd /start:sample /output:%output% + +:: Launch the application via the profiler +%pt%\vsperfcmd /launch:%app% + +:: Shut down the profiler (this command waits, until the application is terminated) +%pt%\vsperfcmd /shutdown + + + + + +:: generate the report files (.csv) +%pt%\vsperfreport /summary:all %output% /symbolpath:"srv*C:\Programovani\Symbols*http://msdl.microsoft.com/download/symbols" + + + + + -- cgit v1.2.3