Commit dcf9ab43 authored by Isuru Fernando's avatar Isuru Fernando
Browse files

use regular build if not cross compiling

parent d93bca96
...@@ -483,7 +483,7 @@ function wrap_wheel_builder { ...@@ -483,7 +483,7 @@ function wrap_wheel_builder {
rm -rf *-stamp rm -rf *-stamp
(macos_arm64_build_wrap $@) (macos_arm64_build_wrap $@)
fuse_macos_intel_arm64 $@ fuse_macos_intel_arm64 $@
elif [[ "${PLAT:-}" == "arm64" ]]; then elif [[ "${PLAT:-}" == "arm64" && "$(uname -m)" != "arm64" ]]; then
(macos_arm64_build_wrap $@) (macos_arm64_build_wrap $@)
else else
$@ $@
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment