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. -k Attempt to kill any running Pythons before building (usually done
31 echo. automatically by the pythoncore project)
32 echo. --pgo Build with Profile-Guided Optimization. This flag
33 echo. overrides -c and -d
34 echo. --test-marker Enable the test marker within the build.
35 echo.
36 echo.Available flags to avoid building certain modules.
37 echo.These flags have no effect if '-e' is not given:
38 echo. --no-ssl Do not attempt to build _ssl
39 echo. --no-tkinter Do not attempt to build Tkinter
40 echo.
41 echo.Available arguments:
42 echo. -c Release ^| Debug ^| PGInstrument ^| PGUpdate
43 echo. Set the configuration (default: Release)
44 echo. -p x64 ^| Win32
45 echo. Set the platform (default: Win32)
46 echo. -t Build ^| Rebuild ^| Clean ^| CleanAll
47 echo. Set the target manually
48 echo. --pgo-job The job to use for PGO training; implies --pgo
49 echo. (default: "-m test --pgo")
95 echo.ERROR: Cannot cross-compile with PGO
96 echo. 32bit operating system detected. Ensure your PROCESSOR_ARCHITECTURE
97 echo. and PROCESSOR_ARCHITEW6432 environment variables are correct.
104 if not exist "%GIT%" echo Cannot find Git on PATH & set GITProperty=
108 if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2)
117 echo on
119 @echo off
126 echo on
131 @echo off
135 rem Call on MSBuild to do the work, echo the command.
138 echo on
146 @echo off