summaryrefslogtreecommitdiffstats
path: root/VC2008
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-01-14 11:05:27 +0100
committermadmaxoft <github@xoft.cz>2014-01-14 11:05:27 +0100
commite3117d797e1617d87d95d782012b621e266e63eb (patch)
treeaea85fe9ca323eacd0c1729402c0b36af2912882 /VC2008
parentCMake: Added postfix for profiled exe (diff)
downloadcuberite-e3117d797e1617d87d95d782012b621e266e63eb.tar
cuberite-e3117d797e1617d87d95d782012b621e266e63eb.tar.gz
cuberite-e3117d797e1617d87d95d782012b621e266e63eb.tar.bz2
cuberite-e3117d797e1617d87d95d782012b621e266e63eb.tar.lz
cuberite-e3117d797e1617d87d95d782012b621e266e63eb.tar.xz
cuberite-e3117d797e1617d87d95d782012b621e266e63eb.tar.zst
cuberite-e3117d797e1617d87d95d782012b621e266e63eb.zip
Diffstat (limited to 'VC2008')
-rw-r--r--VC2008/debug_profile_run.cmd73
-rw-r--r--VC2008/profile_run.cmd73
2 files changed, 0 insertions, 146 deletions
diff --git a/VC2008/debug_profile_run.cmd b/VC2008/debug_profile_run.cmd
deleted file mode 100644
index a078768d0..000000000
--- a/VC2008/debug_profile_run.cmd
+++ /dev/null
@@ -1,73 +0,0 @@
-@echo off
-::
-:: 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 appdir=..\MCServer
-set app=MCServer_dbgprof.exe
-
-:: outputdir is relative to appdir!
-set outputdir=..\Profiling
-set outputname=profile.vsp
-set output=%outputdir%\%outputname%
-
-
-
-
-
-:: Must cd to MCServer's directory so that it can find settings.ini etc.
-cd %appdir%
-
-::Create the output directory, if it didn't exist
-mkdir %outputdir%
-
-
-
-
-
-:: Start the profiler
-%pt%\vsperfcmd /start:sample /output:%output%
-if errorlevel 1 goto haderror
-
-:: Launch the application via the profiler
-%pt%\vsperfcmd /launch:%app%
-if errorlevel 1 goto haderror
-
-:: Shut down the profiler (this command waits, until the application is terminated)
-%pt%\vsperfcmd /shutdown
-if errorlevel 1 goto haderror
-
-
-
-
-
-:: cd to outputdir, so that the reports are generated there
-cd %outputdir%
-
-:: generate the report files (.csv)
-%pt%\vsperfreport /summary:all %outputname% /symbolpath:"srv*C:\Programovani\Symbols*http://msdl.microsoft.com/download/symbols"
-if errorlevel 1 goto haderror
-
-
-
-
-
-goto finished
-
-
-
-
-:haderror
-echo An error was encountered
-pause
-
-
-
-
-:finished
diff --git a/VC2008/profile_run.cmd b/VC2008/profile_run.cmd
deleted file mode 100644
index e8e6eb11b..000000000
--- a/VC2008/profile_run.cmd
+++ /dev/null
@@ -1,73 +0,0 @@
-@echo off
-::
-:: 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 appdir=..\MCServer
-set app=MCServer_profiled.exe
-
-:: outputdir is relative to appdir!
-set outputdir=..\Profiling
-set outputname=profile.vsp
-set output=%outputdir%\%outputname%
-
-
-
-
-
-:: Must cd to MCServer's directory so that it can find settings.ini etc.
-cd %appdir%
-
-::Create the output directory, if it didn't exist
-mkdir %outputdir%
-
-
-
-
-
-:: Start the profiler
-%pt%\vsperfcmd /start:sample /output:%output%
-if errorlevel 1 goto haderror
-
-:: Launch the application via the profiler
-%pt%\vsperfcmd /launch:%app%
-if errorlevel 1 goto haderror
-
-:: Shut down the profiler (this command waits, until the application is terminated)
-%pt%\vsperfcmd /shutdown
-if errorlevel 1 goto haderror
-
-
-
-
-
-:: cd to outputdir, so that the reports are generated there
-cd %outputdir%
-
-:: generate the report files (.csv)
-%pt%\vsperfreport /summary:all %outputname% /symbolpath:"srv*C:\Programovani\Symbols*http://msdl.microsoft.com/download/symbols"
-if errorlevel 1 goto haderror
-
-
-
-
-
-goto finished
-
-
-
-
-:haderror
-echo An error was encountered
-pause
-
-
-
-
-:finished