summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabio Alessandrelli <fabio.alessandrelli@gmail.com>2024-09-23 13:29:40 +0200
committerDavid Snopek <dsnopek@gmail.com>2024-10-28 16:31:51 -0500
commitaf78f2778fe5ba941e04b087d067625d090312fd (patch)
treee2ee51e91e3ef4bd733170332b184dbadb8d4553
parent30a395bf439c7d7af90d55a4a95cba71aa7e9250 (diff)
downloadredot-cpp-af78f2778fe5ba941e04b087d067625d090312fd.tar.gz
[SCons] Enable WASM_BIGINT in web builds
Required since Godot 4.3, which is also the first Godot version with wide WASM gdnative support (previous versions were Chrome-only, and very brittle). (cherry picked from commit 78498da7c329141ba3c54e43561bf470a86b3dab)
-rw-r--r--tools/web.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/web.py b/tools/web.py
index c8f07c5..e878a78 100644
--- a/tools/web.py
+++ b/tools/web.py
@@ -42,6 +42,10 @@ def generate(env):
env.Append(CCFLAGS=["-sSIDE_MODULE=1"])
env.Append(LINKFLAGS=["-sSIDE_MODULE=1"])
+ # Enable WebAssembly BigInt <-> i64 conversion.
+ # This must match the flag used to build Godot (true in official builds since 4.3)
+ env.Append(LINKFLAGS=["-sWASM_BIGINT"])
+
# Force wasm longjmp mode.
env.Append(CCFLAGS=["-sSUPPORT_LONGJMP='wasm'"])
env.Append(LINKFLAGS=["-sSUPPORT_LONGJMP='wasm'"])