8000 PCbuild/build.bat: pass command line parameters when building PGO (#1… · xiaolanpython/cpython@291557e · GitHub
[go: up one dir, main page]

Skip to content

Commit 291557e

Browse files
char101vstinner
authored andcommitted
PCbuild/build.bat: pass command line parameters when building PGO (python#1510)
Custom msbuild properties passed as command line need to be passed too when calling `Build` when doing PGO build.
1 parent 6d336a0 commit 291557e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PCbuild/build.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ if "%kill%"=="true" call :Kill
116116

117117
if "%do_pgo%"=="true" (
118118
set conf=PGInstrument
119-
call :Build
119+
call :Build %1 %2 %3 %4 %5 %6 %7 %8 %9
120120
del /s "%dir%\*.pgc"
121121
del /s "%dir%\..\Lib\*.pyc"
122122
echo on

0 commit comments

Comments
 (0)
0