Staging
v0.5.1
https://github.com/python/cpython
Revision 31e8af9ea5f1d9d696c8efea40fc774a37dfc776 authored by Martin v. Löwis on 18 February 2010, 16:29:17 UTC, committed by Martin v. Löwis on 18 February 2010, 16:29:17 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r78225 | martin.v.loewis | 2010-02-18 17:27:43 +0100 (Do, 18 Feb 2010) | 11 lines

  Merged revisions 78213 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r78213 | martin.v.loewis | 2010-02-18 10:22:20 +0100 (Do, 18 Feb 2010) | 3 lines

    Stop providing crtassem.h symbols when compiling with
    Visual Studio 2010, as msvcr100.dll is not a platform
    assembly anymore.
  ........
................
1 parent 9b3bada
Raw File
Tip revision: 31e8af9ea5f1d9d696c8efea40fc774a37dfc776 authored by Martin v. Löwis on 18 February 2010, 16:29:17 UTC
Merged revisions 78225 via svnmerge from
Tip revision: 31e8af9
build.bat
@echo off
rem A batch program to build or rebuild a particular configuration.
rem just for convenience.

setlocal
set platf=Win32
set conf=Release
set build=

:CheckOpts
if "%1"=="-c" (set conf=%2) & shift & shift & goto CheckOpts
if "%1"=="-p" (set platf=%2) & shift & shift & goto CheckOpts
if "%1"=="-r" (set build=/rebuild) & shift & goto CheckOpts
if "%1"=="-d" (set conf=Debug) & shift & goto CheckOpts

set cmd=vcbuild /useenv pcbuild.sln %build% "%conf%|%platf%"
echo %cmd%
%cmd%
back to top