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/prepare_libffi.bat at fedora-3.14 · fedora-python/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
.
fedora-python
/
cpython
Public
forked from
python/cpython
Notifications
You must be signed in to change notification settings
Fork
2
Star
3
Code
Pull requests
0
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Security and quality
Insights
Files
Expand file tree
fedora-3.14
Breadcrumbs
cpython
/
PCbuild
/
prepare_libffi.bat
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
212 lines (175 loc) · 7.21 KB
fedora-3.14
Breadcrumbs
cpython
/
PCbuild
/
prepare_libffi.bat
Copy path
Top
File metadata and controls
Code
Blame
212 lines (175 loc) · 7.21 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
@
echo
off
goto
:
Run
:
Usage
echo
.
echo
Before running prepare_libffi.bat
echo
LIBFFI_SOURCE environment variable must be set to the location of
echo
of python-source-deps clone of libffi branch
echo
VCVARSALL must be set to location of vcvarsall.bat
echo
cygwin must be installed (see below)
echo
SH environment variable must be set to the location of sh.exe
echo
.
echo
Tested with cygwin-x86 from https://www.cygwin.com/install.html
echo
Select http://mirrors.kernel.org as the download site
echo
Include the following cygwin packages in cygwin configuration:
echo
make, autoconf, automake, libtool, dejagnu
echo
.
echo
NOTE: dejagnu is only required for running tests.
echo
set LIBFFI_TEST=
1
to run tests (optional)
echo
.
echo
Based on https://github.com/libffi/libffi/blob/master/.appveyor.yml
echo
.
echo
.
echo
.Available flags:
echo
. -x64 enable x64 build
echo
. -x86 enable x86 build
echo
. -arm32 enable arm32 build
echo
. -arm64 enable arm64 build
echo
. -? this help
echo
. --install-cygwin install cygwin to c:\cygwin
exit
/b
127
:
Run
set
BUILD_X64
=
set
BUILD_X86
=
set
BUILD_ARM32
=
set
BUILD_ARM64
=
set
BUILD_PDB
=
set
BUILD_NOOPT
=
set
COPY_LICENSE
=
set
INSTALL_CYGWIN
=
:
CheckOpts
if
"
%1
"
==
"
"
goto
:
CheckOptsDone
if
/I
"
%1
"
==
"
-x64
"
(set BUILD_X64=1)
&
shift
&
goto
:
CheckOpts
if
/I
"
%1
"
==
"
-x86
"
(set BUILD_X86=1)
&
shift
&
goto
:
CheckOpts
if
/I
"
%1
"
==
"
-win32
"
(set BUILD_X86=1)
&
shift
&
goto
:
CheckOpts
if
/I
"
%1
"
==
"
-arm32
"
(set BUILD_ARM32=1)
&
shift
&
goto
:
CheckOpts
if
/I
"
%1
"
==
"
-arm64
"
(set BUILD_ARM64=1)
&
shift
&
goto
:
CheckOpts
if
/I
"
%1
"
==
"
-pdb
"
(set BUILD_PDB=-g)
&
shift
&
goto
:
CheckOpts
if
/I
"
%1
"
==
"
-noopt
"
(set BUILD_NOOPT=CFLAGS='-Od -warn all')
&
shift
&
goto
:
CheckOpts
if
/I
"
%1
"
==
"
-license
"
(set COPY_LICENSE=1)
&
shift
&
goto
:
CheckOpts
if
/I
"
%1
"
==
"
-?
"
goto
:
Usage
if
/I
"
%1
"
==
"
--install-cygwin
"
(set INSTALL_CYGWIN=1)
&
shift
&
goto
:
CheckOpts
goto
:
Usage
:
CheckOptsDone
if
NOT
DEFINED
BUILD_X64
if
NOT
DEFINED
BUILD_X86
if
NOT
DEFINED
BUILD_ARM32
if
NOT
DEFINED
BUILD_ARM64 (
set
BUILD_X64
=
1
set
BUILD_X86
=
1
set
BUILD_ARM32
=
0
set
BUILD_ARM64
=
1
set
COPY_LICENSE
=
1
)
if
"
%INSTALL_CYGWIN%
"
==
"
1
"
call
:
InstallCygwin
setlocal
if
NOT
DEFINED
SH
if
exist
c:\cygwin\bin\sh.exe
set
SH
=
c:\cygwin\bin\sh.exe
if
NOT
DEFINED
VCVARSALL (
for
/F
"
tokens=*
"
%%i
in
('
"
%ProgramFiles(x86)%
\Microsoft Visual Studio\Installer\vswhere.exe
"
-property installationPath -latest -prerelease -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64')
DO
@
(set VCVARSALL=
"
%%i
\VC\Auxiliary\Build\vcvarsall.bat
"
)
)
if
^
%VCVARSALL:~
0
,
1
%
NEQ
^
"
SET VCVARSALL=
"
%VCVARSALL%
"
if
NOT
DEFINED
LIBFFI_SOURCE
echo
.
&&
echo ERROR LIBFFI_SOURCE environment variable
not
set
&&
goto
:
Usage
if
NOT
DEFINED
SH
echo
ERROR SH environment variable not set
&&
goto
:
Usage
if
not
exist
%SH%
echo
ERROR
%SH%
does not exist
&&
goto
:
Usage
if
not
exist
%LIBFFI_SOURCE%
echo
ERROR
%LIBFFI_SOURCE%
does not exist
&&
goto
:
Usage
set
OLDPWD
=
%LIBFFI_SOURCE%
pushd
%LIBFFI_SOURCE%
%SH%
--login -lc
"
cygcheck -dc cygwin
"
set
GET_MSVCC
=
%SH%
-lc
"
cd $OLDPWD; export MSVCC=`/usr/bin/find $PWD -name msvcc.sh`; echo ${MSVCC};
"
FOR
/F
"
usebackq delims==
"
%%i
IN
(`
%GET_MSVCC%
`)
do
@
set
MSVCC
=
%%i
echo
.
echo
VCVARSALL :
%VCVARSALL%
echo
SH :
%SH%
echo
LIBFFI_SOURCE:
%LIBFFI_SOURCE%
echo
MSVCC :
%MSVCC%
echo
.
if
not
exist
Makefile.in (
%SH%
-lc
"
(cd $LIBFFI_SOURCE; ./autogen.sh;)
"
if
errorlevel
1
exit
/B
1
)
if
"
%BUILD_X64%
"
==
"
1
"
call
:
BuildOne
x64 x86_64-w64-cygwin x86_64-w64-cygwin
if
errorlevel
1
exit
/B
%ERRORLEVEL%
if
"
%BUILD_X86%
"
==
"
1
"
call
:
BuildOne
x86 i686-pc-cygwin i686-pc-cygwin
if
errorlevel
1
exit
/B
%ERRORLEVEL%
if
"
%BUILD_ARM32%
"
==
"
1
"
call
:
BuildOne
x86_arm i686-pc-cygwin arm-w32-cygwin
if
errorlevel
1
exit
/B
%ERRORLEVEL%
if
"
%BUILD_ARM64%
"
==
"
1
"
call
:
BuildOne
x86_arm64 i686-pc-cygwin aarch64-w64-cygwin
if
errorlevel
1
exit
/B
%ERRORLEVEL%
if
"
%COPY_LICENSE%
"
==
"
1
"
copy
/y
"
%LIBFFI_SOURCE%
\LICENSE
"
"
%LIBFFI_OUT%
\LICENSE
"
popd
endlocal
exit
/b
0
REM
all done
REM
this subroutine is called once for each architecture
:
BuildOne
setlocal
REM
Initialize variables
set
VCVARS_PLATFORM
=
%1
set
BUILD
=
%2
set
HOST
=
%3
set
ASSEMBLER
=
set
SRC_ARCHITECTURE
=
x86
if
NOT
DEFINED
VCVARS_PLATFORM
echo
ERROR bad VCVARS_PLATFORM
&&
exit /b
123
if
/I
"
%VCVARS_PLATFORM%
"
EQU
"
x64
"
(
set
ARCH
=
amd64
set
ARTIFACTS
=
%LIBFFI_SOURCE%
\x86_64-w64-cygwin
set
ASSEMBLER
=
-m64
set
SRC_ARCHITECTURE
=
x86
)
if
/I
"
%VCVARS_PLATFORM%
"
EQU
"
x86
"
(
set
ARCH
=
win32
set
ARTIFACTS
=
%LIBFFI_SOURCE%
\i686-pc-cygwin
set
ASSEMBLER
=
set
SRC_ARCHITECTURE
=
x86
)
if
/I
"
%VCVARS_PLATFORM%
"
EQU
"
x86_arm
"
(
set
ARCH
=
arm32
set
ARTIFACTS
=
%LIBFFI_SOURCE%
\arm-w32-cygwin
set
ASSEMBLER
=
-marm
set
SRC_ARCHITECTURE
=
ARM
)
if
/I
"
%VCVARS_PLATFORM%
"
EQU
"
x86_arm64
"
(
set
ARCH
=
arm64
set
ARTIFACTS
=
%LIBFFI_SOURCE%
\aarch64-w64-cygwin
set
ASSEMBLER
=
-marm64
set
SRC_ARCHITECTURE
=
aarch64
)
if
NOT
DEFINED
LIBFFI_OUT
set
LIBFFI_OUT
=
%~dp0
\..\externals\libffi
set
_LIBFFI_OUT
=
%LIBFFI_OUT%
\
%ARCH%
echo
get VS build environment
call
%VCVARSALL%
%VCVARS_PLATFORM%
echo
clean
%_LIBFFI_OUT%
if
exist
%_LIBFFI_OUT%
(rd
%_LIBFFI_OUT%
/s/q)
echo
================================================================
echo
Configure the build to generate fficonfig.h and ffi.h
echo
================================================================
%SH%
-lc
"
(cd $OLDPWD; ./configure CC='
%MSVCC%
%ASSEMBLER%
%BUILD_PDB%
' CXX='
%MSVCC%
%ASSEMBLER%
%BUILD_PDB%
' LD='link' CPP='cl -nologo -EP' CXXCPP='cl -nologo -EP' CPPFLAGS='-DFFI_BUILDING_DLL'
%BUILD_NOOPT%
NM='dumpbin -symbols' STRIP=':' --build=$BUILD --host=$HOST;)
"
if
errorlevel
1
exit
/B
%ERRORLEVEL%
echo
================================================================
echo
Building libffi
echo
================================================================
%SH%
-lc
"
(cd $OLDPWD; export PATH=/usr/bin:$PATH; cp src/
%SRC_ARCHITECTURE%
/ffitarget.h include; make; find .;)
"
if
errorlevel
1
exit
/B
%ERRORLEVEL%
REM
Tests are not needed to produce artifacts
if
"
%LIBFFI_TEST%
"
EQU
"
1
"
(
echo
"
Running tests...
"
%SH%
-lc
"
(cd $OLDPWD; export PATH=/usr/bin:$PATH; cp `find $PWD -name 'libffi-?.dll'` $HOST/testsuite/; make check; cat `find ./ -name libffi.log`)
"
)
else
(
echo
"
Not running tests
"
)
echo
copying files to
%_LIBFFI_OUT%
if
not
exist
%_LIBFFI_OUT%
\include (md
%_LIBFFI_OUT%
\include)
copy
%ARTIFACTS%
\.libs\libffi-*.dll
%_LIBFFI_OUT%
||
exit
/B
1
copy
%ARTIFACTS%
\.libs\libffi-*.lib
%_LIBFFI_OUT%
||
exit
/B
1
copy
%ARTIFACTS%
\.libs\libffi-*.pdb
%_LIBFFI_OUT%
copy
%ARTIFACTS%
\fficonfig.h
%_LIBFFI_OUT%
\include
||
exit
/B
1
copy
%ARTIFACTS%
\include\*.h
%_LIBFFI_OUT%
\include
||
exit
/B
1
endlocal
exit
/b
:
InstallCygwin
setlocal
if
NOT
DEFINED
CYG_ROOT (set CYG_ROOT=c:/cygwin)
if
NOT
DEFINED
CYG_CACHE (set CYG_CACHE=C:/cygwin/var/cache/setup)
if
NOT
DEFINED
CYG_MIRROR (set CYG_MIRROR=http://mirrors.kernel.org/sourceware/cygwin/)
powershell
-c
"
md $env:CYG_ROOT -ErrorAction SilentlyContinue
"
powershell
-c
"
$setup = $env:CYG_ROOT+'/setup.exe'; if (!(Test-Path $setup)){invoke-webrequest https://cygwin.com/setup-x86_64.exe -outfile $setup}
%CYG_ROOT%
/setup.exe -qnNdO -R
"
%CYG_ROOT%
"
-s
"
%CYG_MIRROR%
"
-l
"
%CYG_CACHE%
"
-P make -P autoconf -P automake -P libtool -P dejagnu
endlocal
exit
/b
You can’t perform that action at this time.