diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-09-08 11:24:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-08 11:24:43 +0200 |
commit | 8b79a19426c7f5eab04caa573866276c76c70871 (patch) | |
tree | 3c93bbc143612aa2d5487b9c0918b74629bdd714 /platform/android | |
parent | 69233093d7e6479b5130bf2c39cbf464a6809c1b (diff) | |
parent | c2c659db326591519d451d368c4e33c78bb9c1fa (diff) |
Merge pull request #63288 from akien-mga/scons-refactor-lto
Diffstat (limited to 'platform/android')
-rw-r--r-- | platform/android/detect.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/platform/android/detect.py b/platform/android/detect.py index ad63821162..1d9bcdd932 100644 --- a/platform/android/detect.py +++ b/platform/android/detect.py @@ -47,6 +47,9 @@ def get_flags(): return [ ("arch", "arm64"), # Default for convenience. ("tools", False), + # Benefits of LTO for Android (size, performance) haven't been clearly established yet. + # So for now we override the default value which may be set when using `production=yes`. + ("lto", "none"), ] @@ -132,6 +135,15 @@ def configure(env): env.Append(CPPDEFINES=["_DEBUG"]) env.Append(CPPFLAGS=["-UNDEBUG"]) + # LTO + if env["lto"] != "none": + if env["lto"] == "thin": + env.Append(CCFLAGS=["-flto=thin"]) + env.Append(LINKFLAGS=["-flto=thin"]) + else: + env.Append(CCFLAGS=["-flto"]) + env.Append(LINKFLAGS=["-flto"]) + # Compiler configuration env["SHLIBSUFFIX"] = ".so" |