blob: f4243f01c589eed2b48d8b30e48c4c2c6cc55816 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
def can_build(env, platform):
# Supported architectures depend on the Embree library.
# No ARM32 support planned.
if env["arch"] == "arm32":
return False
# x86_32 only seems supported on Windows for now.
if env["arch"] == "x86_32" and platform != "windows":
return False
# The rest works, even wasm32!
return True
def configure(env):
pass
|