summaryrefslogtreecommitdiffstats
path: root/tools/linux.py
diff options
context:
space:
mode:
authorGeorge L. Albany <Megacake1234@gmail.com>2024-11-13 03:25:37 +0000
committerGitHub <noreply@github.com>2024-11-13 03:25:37 +0000
commita089d372e877febb71e4b5365e567275c301e750 (patch)
tree98d7630d8587d265c655a53490c58a7831c3fff8 /tools/linux.py
parent8ca6bc2cfb90178d10c2a4a7c502242213bfa645 (diff)
parent2a18d3da32c47f8ac1eea7c05fe3bc9ba2affc82 (diff)
downloadredot-cpp-a089d372e877febb71e4b5365e567275c301e750.tar.gz
Merge pull request #7 from Spartan322/merge/c20a84eHEADmaster
Merge commit godotengine/godot-cpp@c20a84e
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)