summaryrefslogtreecommitdiffstats
path: root/PCbuild/readme.txt
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2014-10-26 03:57:05 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2014-10-26 03:57:05 (GMT)
commitb6f8fec80bfb87ad501ef82b0e664ea281aa817c (patch)
tree595a79e1b57b0e99ac803c70cc568b592f33669b /PCbuild/readme.txt
parentb0effcc8ac761110df759c99ab446599cff7746a (diff)
downloadcpython-b6f8fec80bfb87ad501ef82b0e664ea281aa817c.zip
cpython-b6f8fec80bfb87ad501ef82b0e664ea281aa817c.tar.gz
cpython-b6f8fec80bfb87ad501ef82b0e664ea281aa817c.tar.bz2
Issue #22261: Add a note to PCbuild\readme.txt about MSBuild switches.
Specifically, that they can be passed at the end of a build.bat invocation. Initial patch by Shorya Raj.
Diffstat (limited to 'PCbuild/readme.txt')
-rw-r--r--PCbuild/readme.txt13
1 files changed, 13 insertions, 0 deletions
diff --git a/PCbuild/readme.txt b/PCbuild/readme.txt
index d5ef00f..6193c64 100644
--- a/PCbuild/readme.txt
+++ b/PCbuild/readme.txt
@@ -88,6 +88,19 @@ this behavior:
-r Rebuild instead of just building
-e Use get_externals.bat to fetch external sources
+Up to 9 MSBuild switches can also be passed, though they must be passed
+after specifying any of the above switches. For example, use:
+
+ build.bat -e -d /m
+
+to do a concurrent debug build with externals fetched as needed. If
+the MSBuild switch requires an equal sign ("="), the entire switch must
+be quoted:
+
+ build.bat -e -d "/p:externalsDir=P:\cpython-externals"
+
+There may also be other situations where quotes are necessary.
+
Legacy support
--------------