diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-04-18 21:04:24 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-05-13 01:12:20 +0200 |
commit | 78b4ec2d4d0d6233ca0f4d8cfeb74640063e970f (patch) | |
tree | 007e55d8014441ff904c465488cf60965b3f7485 /platform/android/detect.py | |
parent | 2f47a0747cd0ab0c823dee831167d168ec844f11 (diff) | |
download | redot-engine-78b4ec2d4d0d6233ca0f4d8cfeb74640063e970f.tar.gz |
Increase compiler optimization when using `target=release` on iOS/Android
Diffstat (limited to 'platform/android/detect.py')
-rw-r--r-- | platform/android/detect.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/platform/android/detect.py b/platform/android/detect.py index 3319d5890c..0099ac7e0d 100644 --- a/platform/android/detect.py +++ b/platform/android/detect.py @@ -188,8 +188,11 @@ def configure(env): if env["target"].startswith("release"): if env["optimize"] == "speed": # optimize for speed (default) - env.Append(LINKFLAGS=["-O2"]) - env.Append(CCFLAGS=["-O2", "-fomit-frame-pointer"]) + # `-O2` is more friendly to debuggers than `-O3`, leading to better crash backtraces + # when using `target=release_debug`. + opt = "-O3" if env["target"] == "release" else "-O2" + env.Append(LINKFLAGS=[opt]) + env.Append(CCFLAGS=[opt, "-fomit-frame-pointer"]) elif env["optimize"] == "size": # optimize for size env.Append(CCFLAGS=["-Os"]) env.Append(LINKFLAGS=["-Os"]) |