summaryrefslogtreecommitdiff
path: root/modules/raycast/config.py
blob: 3da9ace9d88050248033ed0339f7c149d8333288 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
def can_build(env, platform):
    # Depends on Embree library, which supports only x86_64 (originally)
    # and aarch64 (thanks to the embree-aarch64 fork).

    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