Lines Matching refs:echo
1 @echo off
4 echo.%~nx0 [flags and arguments] [quoted MSBuild options]
5 echo.
6 echo.Build CPython from the command line. Requires the appropriate
7 echo.version(s) of Microsoft Visual Studio to be installed (see readme.txt).
8 echo.
9 echo.After the flags recognized by this script, up to 9 arguments to be passed
10 echo.directly to MSBuild may be passed. If the argument contains an '=', the
11 echo.entire argument must be quoted (e.g. `%~nx0 "/p:PlatformToolset=v100"`).
12 echo.Alternatively you can put extra flags for MSBuild in a file named
13 echo.`msbuild.rsp` in the `PCbuild` directory, one flag per line. This file
14 echo.will be picked automatically by MSBuild. Flags put in this file does not
15 echo.need to be quoted. You can still use environment variables inside the
16 echo.response file.
17 echo.
18 echo.Available flags:
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
23 echo. Extension modules that depend on external libraries will not attempt
24 echo. to build if this flag is not present
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
29 echo. automatically by the pythoncore project)
30 echo. --pgo Build with Profile-Guided Optimization. This flag
31 echo. overrides -c and -d
32 echo.
33 echo.Available flags to avoid building certain modules.
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
38 echo.
39 echo.Available arguments:
40 echo. -c Release ^| Debug ^| PGInstrument ^| PGUpdate
41 echo. Set the configuration (default: Release)
42 echo. -p x64 ^| Win32
43 echo. Set the platform (default: Win32)
44 echo. -t Build ^| Rebuild ^| Clean ^| CleanAll
45 echo. Set the target manually
46 echo. --pgo-job The job to use for PGO training; implies --pgo
47 echo. (default: "-m test.regrtest --pgo")
92 echo.ERROR: Cannot cross-compile with PGO
93 echo. 32bit operating system detected. Ensure your PROCESSOR_ARCHITECTURE
94 echo. and PROCESSOR_ARCHITEW6432 environment variables are correct.
113 echo on
115 @echo off
123 echo on
128 @echo off
132 rem Call on MSBuild to do the work, echo the command.
135 echo on
143 @echo off