diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2021-05-05 18:01:39 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2021-05-11 14:09:44 +0200 |
commit | 31a9afb135cc5ffcf634e638e88232b71444d975 (patch) | |
tree | fd78043175d6e0dbb77cda0c4812082aeb128a49 | |
parent | 5f3395100973ba86d0c8ba3470e0f7b97baa16db (diff) |
SCons: Disable embree-based modules on x86 (32-bit)
Fixes #48482.
(cherry picked from commit e53422c8f96770c9a9b7497955c84f4b742fdd73)
-rw-r--r-- | modules/raycast/config.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/modules/raycast/config.py b/modules/raycast/config.py index 26493da41b..3da9ace9d8 100644 --- a/modules/raycast/config.py +++ b/modules/raycast/config.py @@ -1,10 +1,16 @@ 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", "x86_64"] + 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 |