summaryrefslogtreecommitdiff
path: root/modules/raycast/config.py
blob: 7e8b3e98407a23e469a74ce0ba73619aa72db831 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
def can_build(env, platform):
    # Depends on Embree library, which only supports x86_64 and aarch64.
    if env["arch"].startswith("rv") or env["arch"].startswith("ppc"):
        return False

    if platform == "android":
        return env["android_arch"] in ["arm64v8", "x86_64"]

    if platform == "javascript":
        return False  # No SIMD support yet

    if env["bits"] == "32":
        return False

    return True


def configure(env):
    pass