summaryrefslogtreecommitdiffstats
path: root/tools/godotcpp.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/godotcpp.py')
-rw-r--r--tools/godotcpp.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/godotcpp.py b/tools/godotcpp.py
index b2a63dc..77a0740 100644
--- a/tools/godotcpp.py
+++ b/tools/godotcpp.py
@@ -326,6 +326,14 @@ def options(opts, env):
("none", "custom", "debug", "speed", "speed_trace", "size"),
)
)
+ opts.Add(
+ EnumVariable(
+ "lto",
+ "Link-time optimization",
+ "none",
+ ("none", "auto", "thin", "full"),
+ )
+ )
opts.Add(BoolVariable("debug_symbols", "Build with debugging symbols", True))
opts.Add(BoolVariable("dev_build", "Developer build with dev-only debugging code (DEV_ENABLED)", False))
opts.Add(BoolVariable("verbose", "Enable verbose output for the compilation", False))