[Windows/ARM64] Fix raycast/embree ARM64 build with LLVM/MinGW.

This commit is contained in:
bruvzg
2024-06-19 21:22:10 +03:00
parent b75f0485ba
commit 04d70c11fc
4 changed files with 65 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
def can_build(env, platform):
# Supported architectures and platforms depend on the Embree library.
if env["arch"] == "arm64" and platform == "windows":
if env["arch"] == "arm64" and platform == "windows" and env.msvc:
return False
if env["arch"] in ["x86_64", "arm64", "wasm32"]:
return True