summaryrefslogtreecommitdiffstats
path: root/PC/VS8.0/build_pgo.bat
diff options
context:
space:
mode:
authorBrian Curtin <brian@python.org>2013-01-25 23:11:34 (GMT)
committerBrian Curtin <brian@python.org>2013-01-25 23:11:34 (GMT)
commit591c4282d70a8aaebe9823ee5b74c27707e9d40d (patch)
tree6e90e4f7c4a732af50fe7337dafc88bb166c1fd4 /PC/VS8.0/build_pgo.bat
parent570c5b235451412ac55ce211813358b50d0e070b (diff)
downloadcpython-591c4282d70a8aaebe9823ee5b74c27707e9d40d.zip
cpython-591c4282d70a8aaebe9823ee5b74c27707e9d40d.tar.gz
cpython-591c4282d70a8aaebe9823ee5b74c27707e9d40d.tar.bz2
Fix #16769. Remove outdated Visual Studio project directories for VC6, VS7.1, and VS8.
Diffstat (limited to 'PC/VS8.0/build_pgo.bat')
-rw-r--r--PC/VS8.0/build_pgo.bat41
1 files changed, 0 insertions, 41 deletions
diff --git a/PC/VS8.0/build_pgo.bat b/PC/VS8.0/build_pgo.bat
deleted file mode 100644
index a37b5bf..0000000
--- a/PC/VS8.0/build_pgo.bat
+++ /dev/null
@@ -1,41 +0,0 @@
-@echo off
-rem A batch program to build PGO (Profile guided optimization) by first
-rem building instrumented binaries, then running the testsuite, and
-rem finally building the optimized code.
-rem Note, after the first instrumented run, one can just keep on
-rem building the PGUpdate configuration while developing.
-
-setlocal
-set platf=Win32
-
-rem use the performance testsuite. This is quick and simple
-set job1=..\..\tools\pybench\pybench.py -n 1 -C 1 --with-gc
-set path1=..\..\tools\pybench
-
-rem or the whole testsuite for more thorough testing
-set job2=..\..\lib\test\regrtest.py
-set path2=..\..\lib
-
-set job=%job1%
-set clrpath=%path1%
-
-:CheckOpts
-if "%1"=="-p" (set platf=%2) & shift & shift & goto CheckOpts
-if "%1"=="-2" (set job=%job2%) & (set clrpath=%path2%) & shift & goto CheckOpts
-
-set PGI=%platf%-pgi
-set PGO=%platf%-pgo
-
-@echo on
-rem build the instrumented version
-call build -p %platf% -c PGInstrument
-
-rem remove .pyc files, .pgc files and execute the job
-%PGI%\python.exe rmpyc.py %clrpath%
-del %PGI%\*.pgc
-%PGI%\python.exe %job%
-
-rem finally build the optimized version
-if exist %PGO% del /s /q %PGO%
-call build -p %platf% -c PGUpdate
-