summaryrefslogtreecommitdiffstats
path: root/modules/raycast/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/raycast/config.py')
-rw-r--r--modules/raycast/config.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/raycast/config.py b/modules/raycast/config.py
index 26329d813a..0fd35af528 100644
--- a/modules/raycast/config.py
+++ b/modules/raycast/config.py
@@ -1,8 +1,9 @@
def can_build(env, platform):
- # Supported architectures depend on the Embree library.
+ # Supported architectures and platforms depend on the Embree library.
+ if env["arch"] == "arm64" and platform == "windows":
+ return False
if env["arch"] in ["x86_64", "arm64", "wasm32"]:
return True
- # x86_32 only seems supported on Windows for now.
if env["arch"] == "x86_32" and platform == "windows":
return True
return False