• Home
  • Raw
  • Download

Lines Matching +full:- +full:- +full:pgo

19 echo.  -h  Display this help message
20 echo. -r Target Rebuild instead of Build
21 echo. -d Set the configuration to Debug
22 echo. -e Build external libraries fetched by get_externals.bat
25 echo. -m Enable parallel build
26 echo. -M Disable parallel build (disabled by default)
27 echo. -v Increased output messages
28 echo. -k Attempt to kill any running Pythons before building (usually done
30 echo. --pgo Build with Profile-Guided Optimization. This flag
31 echo. overrides -c and -d
34 echo.These flags have no effect if '-e' is not given:
35 echo. --no-ssl Do not attempt to build _ssl
36 echo. --no-tkinter Do not attempt to build Tkinter
37 echo. --no-bsddb Do not attempt to build _bsddb
40 echo. -c Release ^| Debug ^| PGInstrument ^| PGUpdate
42 echo. -p x64 ^| Win32
44 echo. -t Build ^| Rebuild ^| Clean ^| CleanAll
46 echo. --pgo-job The job to use for PGO training; implies --pgo
47 echo. (default: "-m test.regrtest --pgo")
60 set pgo_job=-m test.regrtest --pgo
63 if "%~1"=="-h" goto Usage
64 if "%~1"=="-c" (set conf=%2) & shift & shift & goto CheckOpts
65 if "%~1"=="-p" (set platf=%2) & shift & shift & goto CheckOpts
66 if "%~1"=="-r" (set target=Rebuild) & shift & goto CheckOpts
67 if "%~1"=="-t" (set target=%2) & shift & shift & goto CheckOpts
68 if "%~1"=="-d" (set conf=Debug) & shift & goto CheckOpts
69 if "%~1"=="-m" (set parallel=/m) & shift & goto CheckOpts
70 if "%~1"=="-M" (set parallel=) & shift & goto CheckOpts
71 if "%~1"=="-v" (set verbose=/v:n) & shift & goto CheckOpts
72 if "%~1"=="-k" (set kill=true) & shift & goto CheckOpts
73 if "%~1"=="--pgo" (set do_pgo=true) & shift & goto CheckOpts
74 if "%~1"=="--pgo-job" (set do_pgo=true) & (set pgo_job=%~2) & shift & shift & goto CheckOpts
78 if "%~1"=="-e" (set IncludeExternals=true) & shift & goto CheckOpts
79 if "%~1"=="--no-ssl" (set IncludeSSL=false) & shift & goto CheckOpts
80 if "%~1"=="--no-tkinter" (set IncludeTkinter=false) & shift & goto CheckOpts
81 if "%~1"=="--no-bsddb" (set IncludeBsddb=false) & shift & goto CheckOpts
92 echo.ERROR: Cannot cross-compile with PGO
133 rem Passing %1-9 is not the preferred option, but argument parsing in