summaryrefslogtreecommitdiffstats
path: root/platform/iphone/detect.py
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-11-02 09:11:29 +0100
committerRémi Verschelde <rverschelde@gmail.com>2017-11-02 09:11:50 +0100
commitcefdb34f6c1af31048340182c10587099c39da44 (patch)
treea2ebb74b5c5182d8f767be77ce36e76a694d1b2f /platform/iphone/detect.py
parent51b7fd90e645ab8c39d55268d2c8c5eb38925fc1 (diff)
downloadredot-engine-cefdb34f6c1af31048340182c10587099c39da44.tar.gz
SCons: make use_lto a global option and opt-in for iphone
Supersedes #12553, see discussion in #12552.
Diffstat (limited to 'platform/iphone/detect.py')
-rw-r--r--platform/iphone/detect.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/platform/iphone/detect.py b/platform/iphone/detect.py
index 00d8a59f74..993a93ff89 100644
--- a/platform/iphone/detect.py
+++ b/platform/iphone/detect.py
@@ -47,8 +47,8 @@ def configure(env):
if (env["target"].startswith("release")):
env.Append(CPPFLAGS=['-DNDEBUG', '-DNS_BLOCK_ASSERTIONS=1'])
- env.Append(CPPFLAGS=['-O2', '-flto', '-ftree-vectorize', '-fomit-frame-pointer', '-ffast-math', '-funsafe-math-optimizations'])
- env.Append(LINKFLAGS=['-O2', '-flto'])
+ env.Append(CPPFLAGS=['-O2', '-ftree-vectorize', '-fomit-frame-pointer', '-ffast-math', '-funsafe-math-optimizations'])
+ env.Append(LINKFLAGS=['-O2'])
if env["target"] == "release_debug":
env.Append(CPPFLAGS=['-DDEBUG_ENABLED'])
@@ -56,6 +56,10 @@ def configure(env):
elif (env["target"] == "debug"):
env.Append(CPPFLAGS=['-D_DEBUG', '-DDEBUG=1', '-gdwarf-2', '-O0', '-DDEBUG_ENABLED', '-DDEBUG_MEMORY_ENABLED'])
+ if (env["use_lto"]):
+ env.Append(CPPFLAGS=['-flto'])
+ env.Append(LINKFLAGS=['-flto'])
+
## Architecture
if env["ios_sim"] or env["arch"] == "x86": # i386, simulator