Skip to content

Commit

Permalink
Fix incorrect wheel suffix on ARM64 MacOS (#11251)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan Field authored Nov 1, 2021
1 parent 8dcf5d7 commit 3947eba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controller/python/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ pw_python_action("python") {

if (current_cpu == "x64") {
cpu_tag = "x86_64"
} else if (current_cpu == "arm64") {
} else if (current_cpu == "arm64" && current_os == "linux") {
cpu_tag = "aarch64"
} else {
cpu_tag = current_cpu
Expand Down

0 comments on commit 3947eba

Please sign in to comment.