summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2008-01-09 21:35:43 (GMT)
committerThomas Heller <theller@ctypes.org>2008-01-09 21:35:43 (GMT)
commit61390fd884dd4ec10f8bc3ddfbb5e97c9a07db96 (patch)
tree13c1c5456e625ec3e0af268dc0527545a6acb80d /Tools
parentf71b59b072e673b356339da8172d44f6cf7ca300 (diff)
downloadcpython-61390fd884dd4ec10f8bc3ddfbb5e97c9a07db96.zip
cpython-61390fd884dd4ec10f8bc3ddfbb5e97c9a07db96.tar.gz
cpython-61390fd884dd4ec10f8bc3ddfbb5e97c9a07db96.tar.bz2
Change amd64 buildbot scripts to use Visual Studio 2008, and
to use the required versions of external sources. External sources are not yet built, so the build-step fails to built some targets.
Diffstat (limited to 'Tools')
-rw-r--r--Tools/buildbot/build-amd64.bat5
-rw-r--r--Tools/buildbot/clean-amd64.bat7
2 files changed, 6 insertions, 6 deletions
diff --git a/Tools/buildbot/build-amd64.bat b/Tools/buildbot/build-amd64.bat
index cddd3dd..b74086e 100644
--- a/Tools/buildbot/build-amd64.bat
+++ b/Tools/buildbot/build-amd64.bat
@@ -1,6 +1,5 @@
@rem Used by the buildbot "compile" step.
-setlocal
cmd /c Tools\buildbot\external-amd64.bat
-call "%VS71COMNTOOLS%vsvars32.bat"
+call "%VS90COMNTOOLS%vsvars32.bat"
REM cmd /q/c Tools\buildbot\kill_python.bat
-devenv.com /build ReleaseAMD64 PC\VS7.1\pcbuild.sln
+vcbuild PCbuild\pcbuild.sln "Debug|x64"
diff --git a/Tools/buildbot/clean-amd64.bat b/Tools/buildbot/clean-amd64.bat
index 585476a..0fc3617 100644
--- a/Tools/buildbot/clean-amd64.bat
+++ b/Tools/buildbot/clean-amd64.bat
@@ -1,6 +1,7 @@
@rem Used by the buildbot "clean" step.
-call "%VS71COMNTOOLS%vsvars32.bat"
-cd PC\VS7.1
+call "%VS90COMNTOOLS%vsvars32.bat"
+cd PCbuild
@echo Deleting .pyc/.pyo files ...
del /s Lib\*.pyc Lib\*.pyo
-devenv.com /clean ReleaseAMD64 pcbuild.sln
+vcbuild /clean pcbuild.sln "Release|x64"
+vcbuild /clean pcbuild.sln "Debug|x64"