summaryrefslogtreecommitdiffstats
path: root/tools/web.py
diff options
context:
space:
mode:
authorDavid Snopek <dsnopek@gmail.com>2024-11-12 11:16:10 -0600
committerGitHub <noreply@github.com>2024-11-12 11:16:10 -0600
commitc20a84e483ec61c77e5903cb4a139f6875e28a3b (patch)
tree14831bd552221b7771c2c78865f33dd2f226cbfc /tools/web.py
parentf298ddd3c4f21e7ebe3b447047303dc217449261 (diff)
parent5f7cf050433fb04c9d1e1a01176998fc38784142 (diff)
downloadredot-cpp-c20a84e483ec61c77e5903cb4a139f6875e28a3b.tar.gz
Merge pull request #1601 from Ivorforce/lto
Add lto scons option
Diffstat (limited to 'tools/web.py')
-rw-r--r--tools/web.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/web.py b/tools/web.py
index e878a78..f1a4418 100644
--- a/tools/web.py
+++ b/tools/web.py
@@ -52,4 +52,8 @@ def generate(env):
env.Append(CPPDEFINES=["WEB_ENABLED", "UNIX_ENABLED"])
+ # Refer to https://github.com/godotengine/godot/blob/master/platform/web/detect.py
+ if env["lto"] == "auto":
+ env["lto"] = "full"
+
common_compiler_flags.generate(env)