You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +00:00
Increase compiler optimization when using target=release on iOS/Android
This commit is contained in:
@@ -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"])
|
||||
|
||||
Reference in New Issue
Block a user