Commit 8337ad8a authored by Isuru Fernando's avatar Isuru Fernando
Browse files

still support intel builds

parent dc8fe402
...@@ -539,11 +539,13 @@ function wrap_wheel_builder { ...@@ -539,11 +539,13 @@ function wrap_wheel_builder {
else else
(macos_arm64_cross_build_setup && $@) (macos_arm64_cross_build_setup && $@)
fi fi
else elif [[ "${PLAT:-}" == "x86_64" ]]; then
if [[ "$(uname -m)" == "x86_64" ]]; then if [[ "$(uname -m)" == "x86_64" ]]; then
(macos_intel_native_build_setup && $@) (macos_intel_native_build_setup && $@)
else else
(macos_intel_cross_build_setup && $@) (macos_intel_cross_build_setup && $@)
fi fi
else
$@
fi fi
} }
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