PCbuild/build.bat: pass command line parameters when building PGO (#1510)
Custom msbuild properties passed as command line need to be passed too when calling `Build` when doing PGO build.
This commit is contained in:
parent
6d336a0279
commit
291557e290
|
@ -116,7 +116,7 @@ if "%kill%"=="true" call :Kill
|
||||||
|
|
||||||
if "%do_pgo%"=="true" (
|
if "%do_pgo%"=="true" (
|
||||||
set conf=PGInstrument
|
set conf=PGInstrument
|
||||||
call :Build
|
call :Build %1 %2 %3 %4 %5 %6 %7 %8 %9
|
||||||
del /s "%dir%\*.pgc"
|
del /s "%dir%\*.pgc"
|
||||||
del /s "%dir%\..\Lib\*.pyc"
|
del /s "%dir%\..\Lib\*.pyc"
|
||||||
echo on
|
echo on
|
||||||
|
|
Loading…
Reference in New Issue