8000 Update build.py · adiantek/python-build-standalone@2641887 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2641887

Browse files
authored
Update build.py
1 parent 3ac95df commit 2641887

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

cpython-windows/build.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1513,6 +1513,7 @@ def build_openssl(
15131513

15141514
root_32 = td / "x86"
15151515
root_64 = td / "x64"
1516+
root_arm64 = td / "arm64"
15161517

15171518
if arch == "x86":
15181519
root_32.mkdir()
@@ -1536,6 +1537,17 @@ def build_openssl(
15361537
profile,
15371538
jom_archive=jom_archive,
15381539
)
1540+
elif arch == "arm64":
1541+
root_64.mkdir()
1542+
build_openssl_for_arch(
1543+
perl_path,
1544+
"arm64",
1545+
openssl_archive,
1546+
nasm_archive,
1547+
root_arm64,
1548+
profile,
1549+
jom_archive=jom_archive,
1550+
)
15391551
else:
15401552
raise ValueError("unhandled arch: %s" % arch)
15411553

0 commit comments

Comments
 (0)
0