Skip to content

Commit 23292d4

Browse files
committed
Build wheels for Windows / ARM64
1 parent 4b72779 commit 23292d4

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

scripts/fetch-vendor.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"urls": ["https://github.com/aiortc/aioquic-openssl/releases/download/3.4.1-1/openssl-{platform}.tar.gz"]
2+
"urls": ["https://github.com/aiortc/aioquic-openssl/releases/download/3.4.1-2/openssl-{platform}.tar.gz"]
33
}

scripts/fetch-vendor.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ def get_platform():
2323
machine = os.environ["ARCHFLAGS"].split()[1]
2424
return f"macosx_{machine}"
2525
elif system == "Windows":
26-
if struct.calcsize("P") * 8 == 64:
26+
if machine == "ARM64":
27+
return "win_arm64"
28+
elif struct.calcsize("P") * 8 == 64:
2729
return "win_amd64"
2830
else:
2931
return "win32"

0 commit comments

Comments
 (0)