diff options
author | Paul Monson <paulmon@users.noreply.github.com> | 2019-05-15 22:42:29 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@python.org> | 2019-05-15 22:42:29 (GMT) |
commit | 67ff6a103a1184b572750c30e231968c963e72f8 (patch) | |
tree | 79dd2f1d086392ca719abcf2bc165f0a0d160056 /PCbuild | |
parent | fb7e7505ed1337bf40fa7b8b68317d1e86675a86 (diff) | |
download | cpython-67ff6a103a1184b572750c30e231968c963e72f8.zip cpython-67ff6a103a1184b572750c30e231968c963e72f8.tar.gz cpython-67ff6a103a1184b572750c30e231968c963e72f8.tar.bz2 |
bpo-36511: Windows ARM32 buildbot changes (GH-12917)
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/rt.bat | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/PCbuild/rt.bat b/PCbuild/rt.bat index 212befc..e603de6 100644 --- a/PCbuild/rt.bat +++ b/PCbuild/rt.bat @@ -39,6 +39,7 @@ if "%1"=="-O" (set dashO=-O) & shift & goto CheckOpts if "%1"=="-q" (set qmode=yes) & shift & goto CheckOpts if "%1"=="-d" (set suffix=_d) & shift & goto CheckOpts if "%1"=="-x64" (set prefix=%pcbuild%amd64) & shift & goto CheckOpts +if "%1"=="-arm32" (set prefix=%pcbuild%arm32) & shift & goto CheckOpts if NOT "%1"=="" (set regrtestargs=%regrtestargs% %1) & shift & goto CheckOpts if not defined prefix set prefix=%pcbuild%win32 |