diff options
Diffstat (limited to 'tools/linux.py')
-rw-r--r-- | tools/linux.py | 4 |
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) |