2021-04-20 16:40:24 +00:00
|
|
|
def can_build(env, platform):
|
2021-05-20 10:49:33 +00:00
|
|
|
# Depends on Embree library, which only supports x86_64 and aarch64.
|
2021-08-28 22:40:32 +00:00
|
|
|
if env["arch"].startswith("rv"):
|
|
|
|
return False
|
2021-05-05 16:01:39 +00:00
|
|
|
|
2021-04-20 16:40:24 +00:00
|
|
|
if platform == "android":
|
2021-05-05 16:01:39 +00:00
|
|
|
return env["android_arch"] in ["arm64v8", "x86_64"]
|
2021-04-20 16:40:24 +00:00
|
|
|
|
|
|
|
if platform == "javascript":
|
|
|
|
return False # No SIMD support yet
|
|
|
|
|
2021-05-05 16:01:39 +00:00
|
|
|
if env["bits"] == "32":
|
|
|
|
return False
|
|
|
|
|
2021-04-20 16:40:24 +00:00
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def configure(env):
|
|
|
|
pass
|