We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b72779 commit 23292d4Copy full SHA for 23292d4
scripts/fetch-vendor.json
@@ -1,3 +1,3 @@
1
{
2
- "urls": ["https://github.com/aiortc/aioquic-openssl/releases/download/3.4.1-1/openssl-{platform}.tar.gz"]
+ "urls": ["https://github.com/aiortc/aioquic-openssl/releases/download/3.4.1-2/openssl-{platform}.tar.gz"]
3
}
scripts/fetch-vendor.py
@@ -23,7 +23,9 @@ def get_platform():
23
machine = os.environ["ARCHFLAGS"].split()[1]
24
return f"macosx_{machine}"
25
elif system == "Windows":
26
- if struct.calcsize("P") * 8 == 64:
+ if machine == "ARM64":
27
+ return "win_arm64"
28
+ elif struct.calcsize("P") * 8 == 64:
29
return "win_amd64"
30
else:
31
return "win32"
0 commit comments