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.
This commit is contained in:
parent
b0effcc8ac
commit
b6f8fec80b
|
@ -1104,6 +1104,7 @@ Thomas Rachel
|
||||||
Ram Rachum
|
Ram Rachum
|
||||||
Jérôme Radix
|
Jérôme Radix
|
||||||
Burton Radons
|
Burton Radons
|
||||||
|
Shorya Raj
|
||||||
Jeff Ramnani
|
Jeff Ramnani
|
||||||
Brodie Rao
|
Brodie Rao
|
||||||
Senko Rasic
|
Senko Rasic
|
||||||
|
|
|
@ -88,6 +88,19 @@ this behavior:
|
||||||
-r Rebuild instead of just building
|
-r Rebuild instead of just building
|
||||||
-e Use get_externals.bat to fetch external sources
|
-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
|
Legacy support
|
||||||
--------------
|
--------------
|
||||||
|
|
Loading…
Reference in New Issue