summaryrefslogtreecommitdiffstats
path: root/tools/android.py
diff options
context:
space:
mode:
authorLukas Tenbrink <lukas.tenbrink@gmail.com>2024-09-21 12:52:50 +0200
committerLukas Tenbrink <lukas.tenbrink@gmail.com>2024-11-12 12:45:35 +0100
commit5f7cf050433fb04c9d1e1a01176998fc38784142 (patch)
tree0efd233779272cd8f9ccc1c6ef5b2a53e3c1e645 /tools/android.py
parent57bd88ad992da929f224f03c3dee3103bc41ee5d (diff)
downloadredot-cpp-5f7cf050433fb04c9d1e1a01176998fc38784142.tar.gz
Add lto scons option, defaulting to "none".
Diffstat (limited to 'tools/android.py')
-rw-r--r--tools/android.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/android.py b/tools/android.py
index 0222121..fee4ed2 100644
--- a/tools/android.py
+++ b/tools/android.py
@@ -120,4 +120,9 @@ def generate(env):
env.Append(CPPDEFINES=["ANDROID_ENABLED", "UNIX_ENABLED"])
+ # Refer to https://github.com/godotengine/godot/blob/master/platform/android/detect.py
+ # LTO benefits for Android (size, performance) haven't been clearly established yet.
+ if env["lto"] == "auto":
+ env["lto"] = "none"
+
common_compiler_flags.generate(env)