summaryrefslogtreecommitdiffstats
path: root/PCbuild
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@python.org>2023-02-09 17:15:19 (GMT)
committerGitHub <noreply@github.com>2023-02-09 17:15:19 (GMT)
commitf23371fbc9bb283207ecebf8efd81a22538b4327 (patch)
tree8f0ab151344b1d0cd2dec00dd5788f7ff6af8f88 /PCbuild
parentcb2411886a181d25e0cff2c870f331d2949874d5 (diff)
downloadcpython-f23371fbc9bb283207ecebf8efd81a22538b4327.zip
cpython-f23371fbc9bb283207ecebf8efd81a22538b4327.tar.gz
cpython-f23371fbc9bb283207ecebf8efd81a22538b4327.tar.bz2
LibFFI build requires x64 Cygwin, and skip the ARM build (GH-101743)
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/prepare_libffi.bat4
1 files changed, 2 insertions, 2 deletions
diff --git a/PCbuild/prepare_libffi.bat b/PCbuild/prepare_libffi.bat
index 7e7842a..ef36c36 100644
--- a/PCbuild/prepare_libffi.bat
+++ b/PCbuild/prepare_libffi.bat
@@ -60,7 +60,7 @@ goto :Usage
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=1
+ set BUILD_ARM32=0
set BUILD_ARM64=1
set COPY_LICENSE=1
)
@@ -204,7 +204,7 @@ 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.exe -outfile $setup}
+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