Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
cpython/PCbuild/build.bat at pythoncapi · pythoncapi/cpython · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
pythoncapi
/
cpython
Public
forked from
python/cpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
pythoncapi
Breadcrumbs
cpython
/
PCbuild
/
build.bat
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
151 lines (138 loc) · 5.81 KB
pythoncapi
Breadcrumbs
cpython
/
PCbuild
/
build.bat
Copy path
Top
File metadata and controls
Code
Blame
151 lines (138 loc) · 5.81 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
@
echo
off
goto
Run
:
Usage
echo
.
%~nx0
[flags and arguments] [quoted MSBuild options]
echo
.
echo
.Build CPython from the command line. Requires the appropriate
echo
.version(s) of Microsoft Visual Studio to be installed (see readme.txt).
echo
.
echo
.After the flags recognized by this script, up to
9
arguments to be passed
echo
.directly to MSBuild may be passed. If the argument contains an '=', the
echo
.entire argument must be quoted (e.g. `
%~nx0
"
/p:PlatformToolset=v100
"
`).
echo
.Alternatively you can put extra flags for MSBuild in a file named
echo
.`msbuild.rsp` in the `PCbuild` directory, one flag per line. This file
echo
.will be picked automatically by MSBuild. Flags put in this file does not
echo
.need to be quoted. You can still use environment variables inside the
echo
.response file.
echo
.
echo
.Available flags:
echo
. -h Display this help message
echo
. -V Display version information for the current build
echo
. -r Target Rebuild instead of Build
echo
. -d Set the configuration to Debug
echo
. -E Don't fetch or build external libraries. Extension modules that
echo
. depend on external libraries will not attempt to build if this flag
echo
. is present; -e is also accepted to explicitly enable fetching and
echo
. building externals.
echo
. -m Enable parallel build (enabled by default)
echo
. -M Disable parallel build
echo
. -v Increased output messages
echo
. -k Attempt to kill any running Pythons before building (usually done
echo
. automatically by the pythoncore project)
echo
. --pgo Build with Profile-Guided Optimization. This flag
echo
. overrides -c and -d
echo
. --test-marker Enable the test marker within the build.
echo
.
echo
.Available flags to avoid building certain modules.
echo
.These flags have no effect if '-e' is not given:
echo
. --no-ssl Do not attempt to build _ssl
echo
. --no-tkinter Do not attempt to build Tkinter
echo
.
echo
.Available arguments:
echo
. -c Release
^
| Debug
^
| PGInstrument
^
| PGUpdate
echo
. Set the configuration (default: Release)
echo
. -p x64
^
| Win32
echo
. Set the platform (default: Win32)
echo
. -t Build
^
| Rebuild
^
| Clean
^
| CleanAll
echo
. Set the target manually
echo
. --pgo-job The job to use for PGO training; implies --pgo
echo
. (default:
"
-m test --pgo
"
)
exit
/b
127
:
Run
setlocal
set
platf
=
Win32
set
conf
=
Release
set
target
=
Build
set
dir
=
%~dp0
set
parallel
=
/m
set
verbose
=
/nologo /v:m
set
kill
=
set
do_pgo
=
set
pgo_job
=
-m test --pgo
:
CheckOpts
if
"
%~1
"
==
"
-h
"
goto
Usage
if
"
%~1
"
==
"
-c
"
(set conf=
%2
)
&
shift
&
shift
&
goto
CheckOpts
if
"
%~1
"
==
"
-p
"
(set platf=
%2
)
&
shift
&
shift
&
goto
CheckOpts
if
"
%~1
"
==
"
-r
"
(set target=Rebuild)
&
shift
&
goto
CheckOpts
if
"
%~1
"
==
"
-t
"
(set target=
%2
)
&
shift
&
shift
&
goto
CheckOpts
if
"
%~1
"
==
"
-d
"
(set conf=Debug)
&
shift
&
goto
CheckOpts
if
"
%~1
"
==
"
-m
"
(set parallel=/m)
&
shift
&
goto
CheckOpts
if
"
%~1
"
==
"
-M
"
(set parallel=)
&
shift
&
goto
CheckOpts
if
"
%~1
"
==
"
-v
"
(set verbose=/v:n)
&
shift
&
goto
CheckOpts
if
"
%~1
"
==
"
-k
"
(set kill=true)
&
shift
&
goto
CheckOpts
if
"
%~1
"
==
"
--pgo
"
(set do_pgo=true)
&
shift
&
goto
CheckOpts
if
"
%~1
"
==
"
--pgo-job
"
(set do_pgo=true)
&
(set pgo_job=
%~2
)
&
shift
&
shift
&
goto
CheckOpts
if
"
%~1
"
==
"
--test-marker
"
(set UseTestMarker=true)
&
shift
&
goto
CheckOpts
if
"
%~1
"
==
"
-V
"
shift
&
goto
Version
rem
These use the actual property names used by MSBuild. We could just let
rem
them in through the environment, but we specify them on the command line
rem
anyway for visibility so set defaults after this
if
"
%~1
"
==
"
-e
"
(set IncludeExternals=true)
&
shift
&
goto
CheckOpts
if
"
%~1
"
==
"
-E
"
(set IncludeExternals=false)
&
shift
&
goto
CheckOpts
if
"
%~1
"
==
"
--no-ssl
"
(set IncludeSSL=false)
&
shift
&
goto
CheckOpts
if
"
%~1
"
==
"
--no-tkinter
"
(set IncludeTkinter=false)
&
shift
&
goto
CheckOpts
if
"
%IncludeExternals%
"
==
"
"
set
IncludeExternals
=
true
if
"
%IncludeSSL%
"
==
"
"
set
IncludeSSL
=
true
if
"
%IncludeTkinter%
"
==
"
"
set
IncludeTkinter
=
true
if
"
%IncludeExternals%
"
==
"
true
"
call
"
%dir%
get_externals.bat
"
if
"
%do_pgo%
"
EQU
"
true
"
if
"
%platf%
"
EQU
"
x64
"
(
if
"
%PROCESSOR_ARCHITEW6432%
"
NEQ
"
AMD64
"
if
"
%PROCESSOR_ARCHITECTURE%
"
NEQ
"
AMD64
"
(
echo
.ERROR: Cannot cross-compile with PGO
echo
. 32bit operating system detected. Ensure your PROCESSOR_ARCHITECTURE
echo
. and PROCESSOR_ARCHITEW6432 environment variables are correct.
exit
/b
1
)
)
if
not
exist
"
%GIT%
"
where
git
>
"
%TEMP%
\git.loc
"
2
>
nul
&&
set
/P
GIT
=
<
"
%TEMP%
\git.loc
"
&
del
"
%TEMP%
\git.loc
"
if
exist
"
%GIT%
"
set
GITProperty
=
/p:GIT=
"
%GIT%
"
if
not
exist
"
%GIT%
"
echo
Cannot find Git on PATH
&
set
GITProperty
=
rem
Setup the environment
call
"
%dir%
find_msbuild.bat
"
%MSBUILD%
if
ERRORLEVEL
1
(echo Cannot locate MSBuild.exe on
PATH
or as MSBUILD variable
&
exit
/b 2)
if
"
%kill%
"
==
"
true
"
call
:
Kill
if
"
%do_pgo%
"
==
"
true
"
(
set
conf
=
PGInstrument
call
:
Build
%1
%2
%3
%4
%5
%6
%7
%8
%9
del
/s
"
%dir%
\*.pgc
"
del
/s
"
%dir%
\..\Lib\*.pyc
"
echo
on
call
"
%dir%
\..\python.bat
"
%pgo_job%
@
echo
off
call
:
Kill
set
conf
=
PGUpdate
set
target
=
Build
)
goto
Build
:
Kill
echo
on
%MSBUILD%
"
%dir%
\pythoncore.vcxproj
"
/t:KillPython
%verbose%
^
/p:Configuration=
%conf%
/p:Platform=
%platf%
^
/p:KillPython=true
@
echo
off
goto
:
eof
:
Build
rem
Call on MSBuild to do the work, echo the command.
rem
Passing %1-9 is not the preferred option, but argument parsing in
rem
batch is, shall we say, "lackluster"
echo
on
%MSBUILD%
"
%dir%
pcbuild.proj
"
/t:
%target%
%parallel%
%verbose%
^
/p:Configuration=
%conf%
/p:Platform=
%platf%
^
/p:IncludeExternals=
%IncludeExternals%
^
/p:IncludeSSL=
%IncludeSSL%
/p:IncludeTkinter=
%IncludeTkinter%
^
/p:UseTestMarker=
%UseTestMarker%
%GITProperty%
^
%1
%2
%3
%4
%5
%6
%7
%8
%9
@
echo
off
goto
:
eof
:
Version
rem
Display the current build version information
%MSBUILD%
"
%dir%
python.props
"
/t:ShowVersionInfo /v:m /nologo
%1
%2
%3
%4
%5
%6
%7
%8
%9
You can’t perform that action at this time.