virtualx-engine/modules/raycast/config.py
Rémi Verschelde ae34c85a87
Linux: Fix arm32 build for OIDN and Embree
Still paying the cost of not having refactored all architecture handling
in the 3.x branch so we have this broken hybrid of arch/bits which is
unreliable.
2024-01-16 18:17:05 +01:00

22 lines
532 B
Python

def can_build(env, platform):
if not env["tools"]:
return False
# Depends on Embree library, which only supports x86_64 and aarch64.
if env["arch"] in ["arm", "arm32"] or env["arch"].startswith("rv") or env["arch"].startswith("ppc"):
return False
if platform == "android":
return env["android_arch"] in ["arm64v8", "x86_64"]
if platform in ["javascript", "server"]:
return False
if env["bits"] == "32":
return False
return True
def configure(env):
pass