]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Change amd64 buildbot scripts to use Visual Studio 2008, and
authorThomas Heller <theller@ctypes.org>
Wed, 9 Jan 2008 21:35:43 +0000 (21:35 +0000)
committerThomas Heller <theller@ctypes.org>
Wed, 9 Jan 2008 21:35:43 +0000 (21:35 +0000)
to use the required versions of external sources.
External sources are not yet built, so the build-step fails to
built some targets.

Tools/buildbot/build-amd64.bat
Tools/buildbot/clean-amd64.bat

index cddd3dde6e4504660c214c75d288a9ae83b69dd9..b74086e174707e5deb88616199a7ca18843a02ca 100644 (file)
@@ -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"
index 585476a4856dae6016fa22355c5975b1bf5061c7..0fc3617554df06573e13c500d03a93e126a6dfa1 100644 (file)
@@ -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"