File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change
1
+ The build.bat script has additional options for very-quiet output (-q) and very-verbose output (-vv)
Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ echo. building externals.
27
27
echo . -m Enable parallel build (enabled by default)
28
28
echo . -M Disable parallel build
29
29
echo . -v Increased output messages
30
+ echo . -vv Verbose output messages
31
+ echo . -q Quiet output messages (errors and warnings only)
30
32
echo . -k Attempt to kill any running Pythons before building (usually done
31
33
echo . automatically by the pythoncore project)
32
34
echo . --pgo Build with Profile-Guided Optimization. This flag
@@ -73,6 +75,8 @@ if "%~1"=="-d" (set conf=Debug) & shift & goto CheckOpts
73
75
if " %~1 " == " -m" (set parallel=/m) & shift & goto CheckOpts
74
76
if " %~1 " == " -M" (set parallel=) & shift & goto CheckOpts
75
77
if " %~1 " == " -v" (set verbose=/v:n) & shift & goto CheckOpts
78
+ if " %~1 " == " -vv" (set verbose=/v:d /ds) & shift & goto CheckOpts
79
+ if " %~1 " == " -q" (set verbose=/v:q /nologo /clp:summary) & shift & goto CheckOpts
76
80
if " %~1 " == " -k" (set kill=true) & shift & goto CheckOpts
77
81
if " %~1 " == " --pgo" (set do_pgo=true) & shift & goto CheckOpts
78
82
if " %~1 " == " --pgo-job" (set do_pgo=true) & (set pgo_job=%~2 ) & shift & shift & goto CheckOpts
You can’t perform that action at this time.
0 commit comments