diff options
author | David Snopek <dsnopek@gmail.com> | 2024-11-12 11:16:10 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-12 11:16:10 -0600 |
commit | c20a84e483ec61c77e5903cb4a139f6875e28a3b (patch) | |
tree | 14831bd552221b7771c2c78865f33dd2f226cbfc /tools/web.py | |
parent | f298ddd3c4f21e7ebe3b447047303dc217449261 (diff) | |
parent | 5f7cf050433fb04c9d1e1a01176998fc38784142 (diff) | |
download | redot-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.py | 4 |
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) |