summaryrefslogtreecommitdiffstats
path: root/tools/linux.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/linux.py')
-rw-r--r--tools/linux.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/linux.py b/tools/linux.py
index 0b26878..9e85d88 100644
--- a/tools/linux.py
+++ b/tools/linux.py
@@ -39,4 +39,8 @@ def generate(env):
env.Append(CPPDEFINES=["LINUX_ENABLED", "UNIX_ENABLED"])
+ # Refer to https://github.com/godotengine/godot/blob/master/platform/linuxbsd/detect.py
+ if env["lto"] == "auto":
+ env["lto"] = "full"
+
common_compiler_flags.generate(env)