diff options
author | George L. Albany <Megacake1234@gmail.com> | 2024-11-13 03:25:37 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-13 03:25:37 +0000 |
commit | a089d372e877febb71e4b5365e567275c301e750 (patch) | |
tree | 98d7630d8587d265c655a53490c58a7831c3fff8 /tools/godotcpp.py | |
parent | 8ca6bc2cfb90178d10c2a4a7c502242213bfa645 (diff) | |
parent | 2a18d3da32c47f8ac1eea7c05fe3bc9ba2affc82 (diff) | |
download | redot-cpp-master.tar.gz |
Merge commit godotengine/godot-cpp@c20a84e
Diffstat (limited to 'tools/godotcpp.py')
-rw-r--r-- | tools/godotcpp.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/godotcpp.py b/tools/godotcpp.py index afa3c49..47a202e 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)) |