2021-04-20 18:40:24 +02:00
|
|
|
def can_build(env, platform):
|
2021-05-05 18:01:39 +02:00
|
|
|
# Depends on Embree library, which supports only x86_64 (originally)
|
|
|
|
# and aarch64 (thanks to the embree-aarch64 fork).
|
|
|
|
|
2021-04-20 18:40:24 +02:00
|
|
|
if platform == "android":
|
2021-05-05 18:01:39 +02:00
|
|
|
return env["android_arch"] in ["arm64v8", "x86_64"]
|
2021-04-20 18:40:24 +02:00
|
|
|
|
|
|
|
if platform == "javascript":
|
|
|
|
return False # No SIMD support yet
|
|
|
|
|
2021-05-05 18:01:39 +02:00
|
|
|
if env["bits"] == "32":
|
|
|
|
return False
|
|
|
|
|
2021-04-20 18:40:24 +02:00
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def configure(env):
|
|
|
|
pass
|