Skip to content

Commit

Permalink
Merge pull request #674 from nsait-linaro/win_arm64_build
Browse files Browse the repository at this point in the history
[win-arm64] Build without rustls package
  • Loading branch information
messense authored Nov 10, 2021
2 parents f4cebdd + c1a303f commit 0535efe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ def run(self):
"--message-format=json",
]

if platform.machine() in ("ppc64le", "ppc64", "powerpc"):
if platform.machine() in ("ppc64le", "ppc64", "powerpc") or (
sys.platform == "win32" and platform.machine() == "ARM64"
):
cargo_args.extend(
["--no-default-features", "--features=upload,log,human-panic"]
)
Expand Down

0 comments on commit 0535efe

Please sign in to comment.