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. -V Display version information for the current build
21 echo. -r Target Rebuild instead of Build
22 echo. -d Set the configuration to Debug
23 echo. -E Don't fetch or build external libraries. Extension modules that
24 echo. depend on external libraries will not attempt to build if this flag
25 echo. is present; -e is also accepted to explicitly enable fetching and
26 echo. building externals.
27 echo. -m Enable parallel build (enabled by default)
28 echo. -M Disable parallel build
29 echo. -v Increased output messages
30 echo. -vv Verbose output messages
31 echo. -q Quiet output messages (errors and warnings only)
32 echo. -k Attempt to kill any running Pythons before building (usually done
33 echo. automatically by the pythoncore project)
34 echo. --pgo Build with Profile-Guided Optimization. This flag
35 echo. overrides -c and -d
36 echo. --test-marker Enable the test marker within the build.
37 echo. --regen Regenerate all opcodes, grammar and tokens.
38 echo.
39 echo.Available flags to avoid building certain modules.
40 echo.These flags have no effect if '-e' is not given:
41 echo. --no-ctypes Do not attempt to build _ctypes
42 echo. --no-ssl Do not attempt to build _ssl
43 echo. --no-tkinter Do not attempt to build Tkinter
44 echo.
45 echo.Available arguments:
46 echo. -c Release ^| Debug ^| PGInstrument ^| PGUpdate
47 echo. Set the configuration (default: Release)
48 echo. -p x64 ^| Win32 ^| ARM ^| ARM64
49 echo. Set the platform (default: x64)
50 echo. -t Build ^| Rebuild ^| Clean ^| CleanAll
51 echo. Set the target manually
52 echo. --pgo-job The job to use for PGO training; implies --pgo
53 echo. (default: "-m test --pgo")
104 echo.ERROR: Cannot cross-compile with PGO
105 echo. 32bit operating system detected. Ensure your PROCESSOR_ARCHITECTURE
106 echo. and PROCESSOR_ARCHITEW6432 environment variables are correct.
113 if not exist "%GIT%" echo Cannot find Git on PATH & set GITProperty=
117 if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2)
120 if ERRORLEVEL 1 (echo Cannot locate python.exe on PATH or as PYTHON variable & exit /b 3)
138 echo on
140 @echo off
148 echo on
153 @echo off
157 echo on
162 @echo off
166 rem Call on MSBuild to do the work, echo the command.
169 echo on
178 @echo off
184 if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2)