diff options
author | Thomas Heller <theller@ctypes.org> | 2007-06-10 15:59:17 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2007-06-10 15:59:17 (GMT) |
commit | 3608a163a6d2a3b07e70cbd6bfce1e770347a0aa (patch) | |
tree | d484422e03a3016a0aceabb0c035a426c0338a2b /Tools | |
parent | 9201e7f1a663abc76a4bcd57686c1e966240da64 (diff) | |
download | cpython-3608a163a6d2a3b07e70cbd6bfce1e770347a0aa.zip cpython-3608a163a6d2a3b07e70cbd6bfce1e770347a0aa.tar.gz cpython-3608a163a6d2a3b07e70cbd6bfce1e770347a0aa.tar.bz2 |
First version of build scripts for Windows/AMD64 (no external
components are built yet, and 'kill_python' is disabled).
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/buildbot/build-amd64.bat | 5 | ||||
-rw-r--r-- | Tools/buildbot/clean-amd64.bat | 6 | ||||
-rw-r--r-- | Tools/buildbot/test-amd64.bat | 3 |
3 files changed, 14 insertions, 0 deletions
diff --git a/Tools/buildbot/build-amd64.bat b/Tools/buildbot/build-amd64.bat new file mode 100644 index 0000000..bdfedac --- /dev/null +++ b/Tools/buildbot/build-amd64.bat @@ -0,0 +1,5 @@ +@rem Used by the buildbot "compile" step. +REM cmd /c Tools\buildbot\external.bat +call "%VS71COMNTOOLS%vsvars32.bat" +REM cmd /q/c Tools\buildbot\kill_python.bat +devenv.com /build ReleaseAMD64 PCbuild\pcbuild.sln diff --git a/Tools/buildbot/clean-amd64.bat b/Tools/buildbot/clean-amd64.bat new file mode 100644 index 0000000..263e22b --- /dev/null +++ b/Tools/buildbot/clean-amd64.bat @@ -0,0 +1,6 @@ +@rem Used by the buildbot "clean" step. +REM call "%VS71COMNTOOLS%vsvars32.bat" +cd PCbuild +@echo Deleting .pyc/.pyo files ... +python.exe rmpyc.py +devenv.com /clean ReleaseAMD64 pcbuild.sln diff --git a/Tools/buildbot/test-amd64.bat b/Tools/buildbot/test-amd64.bat new file mode 100644 index 0000000..6995ece --- /dev/null +++ b/Tools/buildbot/test-amd64.bat @@ -0,0 +1,3 @@ +@rem Used by the buildbot "test" step. +cd PCbuild +call rt.bat -q -uall -rw |