summaryrefslogtreecommitdiffstats
path: root/PCbuild
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2015-06-10 05:43:20 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2015-06-10 05:43:20 (GMT)
commit785273cd84a81a695a2707c0ef48df4f285f8699 (patch)
treee10327d27bbadbc24db464c268cc20b2e5f26de1 /PCbuild
parent9380acbbf707d570696ab953489e62173e515b24 (diff)
parent6250df81bfbe567bb12c6dc29af149c62f35afa6 (diff)
downloadcpython-785273cd84a81a695a2707c0ef48df4f285f8699.zip
cpython-785273cd84a81a695a2707c0ef48df4f285f8699.tar.gz
cpython-785273cd84a81a695a2707c0ef48df4f285f8699.tar.bz2
Merge forward extras beyond #21907 backport.
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/build.bat9
1 files changed, 9 insertions, 0 deletions
diff --git a/PCbuild/build.bat b/PCbuild/build.bat
index fa9f403..3f8e231 100644
--- a/PCbuild/build.bat
+++ b/PCbuild/build.bat
@@ -9,8 +9,10 @@ rem -r Target Rebuild instead of Build
rem -t Set the target manually (Build, Rebuild, Clean, or CleanAll)
rem -d Set the configuration to Debug
rem -e Pull in external libraries using get_externals.bat
+rem -m Enable parallel build (enabled by default)
rem -M Disable parallel build
rem -v Increased output messages
+rem -k Attempt to kill any running Pythons before building (usually unnecessary)
setlocal
set platf=Win32
@@ -20,6 +22,7 @@ set target=Build
set dir=%~dp0
set parallel=/m
set verbose=/nologo /v:m
+set kill=
:CheckOpts
if '%1'=='-c' (set conf=%2) & shift & shift & goto CheckOpts
@@ -28,14 +31,20 @@ if '%1'=='-r' (set target=Rebuild) & shift & goto CheckOpts
if '%1'=='-t' (set target=%2) & shift & shift & goto CheckOpts
if '%1'=='-d' (set conf=Debug) & shift & goto CheckOpts
if '%1'=='-e' call "%dir%get_externals.bat" & shift & goto CheckOpts
+if '%1'=='-m' (set parallel=/m) & shift & goto CheckOpts
if '%1'=='-M' (set parallel=) & shift & goto CheckOpts
if '%1'=='-v' (set verbose=/v:n) & shift & goto CheckOpts
+if '%1'=='-k' (set kill=true) & shift & goto CheckOpts
if '%platf%'=='x64' (set vs_platf=x86_amd64)
rem Setup the environment
call "%dir%env.bat" %vs_platf% >nul
+if '%kill%'=='true' (
+ msbuild /v:m /nologo /target:KillPython "%pcbuild%\pythoncore.vcxproj" /p:Configuration=%conf% /p:Platform=%platf% /p:KillPython=true
+)
+
rem Call on MSBuild to do the work, echo the command.
rem Passing %1-9 is not the preferred option, but argument parsing in
rem batch is, shall we say, "lackluster"