From 5f7cf050433fb04c9d1e1a01176998fc38784142 Mon Sep 17 00:00:00 2001 From: Lukas Tenbrink Date: Sat, 21 Sep 2024 12:52:50 +0200 Subject: Add lto scons option, defaulting to "none". --- tools/web.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tools/web.py') diff --git a/tools/web.py b/tools/web.py index c8f07c5..c491880 100644 --- a/tools/web.py +++ b/tools/web.py @@ -48,4 +48,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) -- cgit v1.2.3